props.ts 260 B

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