props.ts 385 B

12345678910111213141516
  1. import type { ClListItem, PassThroughProps } from "../../types";
  2. import type { ClListItemPassThrough } from "../cl-list-item/props";
  3. export type ClListPassThrough = {
  4. className?: string;
  5. list?: PassThroughProps;
  6. item?: ClListItemPassThrough;
  7. };
  8. export type ClListProps = {
  9. className?: string;
  10. pt?: ClListPassThrough;
  11. list?: ClListItem[];
  12. title?: string;
  13. border?: boolean;
  14. };