2
0

type.d.ts 367 B

12345678910111213141516171819
  1. export interface TdIconProps {
  2. color?: {
  3. type: StringConstructor;
  4. value?: string;
  5. };
  6. name: {
  7. type: StringConstructor;
  8. value?: string;
  9. required?: boolean;
  10. };
  11. prefix?: {
  12. type: StringConstructor;
  13. value?: string;
  14. };
  15. size?: {
  16. type: null;
  17. value?: string | number;
  18. };
  19. }