props.ts 334 B

12345678910111213141516
  1. import type { PassThroughProps } from "../../types";
  2. export type ClFooterPassThrough = {
  3. className?: string;
  4. content?: PassThroughProps;
  5. wrapper?: PassThroughProps;
  6. };
  7. export type ClFooterProps = {
  8. className?: string;
  9. pt?: ClFooterPassThrough;
  10. minHeight?: number;
  11. vt?: number;
  12. height?: number;
  13. backgroundColor?: string;
  14. };