props.ts 199 B

123456789101112
  1. export type ClColPassThrough = {
  2. className?: string;
  3. };
  4. export type ClColProps = {
  5. className?: string;
  6. pt?: ClColPassThrough;
  7. span?: number;
  8. offset?: number;
  9. push?: number;
  10. pull?: number;
  11. };