14 lines
247 B
TypeScript
14 lines
247 B
TypeScript
export type ClIconPassThrough = {
|
|
className?: string;
|
|
};
|
|
|
|
export type ClIconProps = {
|
|
className?: string;
|
|
pt?: ClIconPassThrough;
|
|
name?: string;
|
|
size?: string | number;
|
|
height?: string | number;
|
|
width?: string | number;
|
|
color?: string;
|
|
};
|