Files
Frontend/src/app/components/icon/icon-props.ts
Liam f00d6d8ba4
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
add motd to the server page
2024-04-16 21:18:08 +01:00

12 lines
142 B
TypeScript

export type IconProps = {
/**
* The size of the icon
*/
size?: number;
/**
* The color of the icon
*/
color?: string;
};