props.ts 151 B

123456789
  1. export type ClRowPassThrough = {
  2. className?: string;
  3. };
  4. export type ClRowProps = {
  5. className?: string;
  6. pt?: ClRowPassThrough;
  7. gutter?: number;
  8. };