All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
12 lines
142 B
TypeScript
12 lines
142 B
TypeScript
export type IconProps = {
|
|
/**
|
|
* The size of the icon
|
|
*/
|
|
size?: number;
|
|
|
|
/**
|
|
* The color of the icon
|
|
*/
|
|
color?: string;
|
|
};
|