props.ts 220 B

12345678910111213
  1. export type ClIconPassThrough = {
  2. className?: string;
  3. };
  4. export type ClIconProps = {
  5. className?: string;
  6. pt?: ClIconPassThrough;
  7. name?: string;
  8. size?: number;
  9. height?: number;
  10. width?: number;
  11. color?: string;
  12. };