props.ts 368 B

123456789101112131415
  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. border?: boolean;
  13. };