props.ts 378 B

1234567891011121314
  1. import type { ClActionSheetItem, ClActionSheetOptions, PassThroughProps } from "../../types";
  2. import type { ClIconProps } from "../cl-icon/props";
  3. export type ClActionSheetPassThrough = {
  4. className?: string;
  5. item?: PassThroughProps;
  6. list?: PassThroughProps;
  7. icon?: ClIconProps;
  8. };
  9. export type ClActionSheetProps = {
  10. className?: string;
  11. pt?: ClActionSheetPassThrough;
  12. };