6 lines
118 B
TypeScript
6 lines
118 B
TypeScript
interface ServiceIconProps {
|
|
size: '100%' | number;
|
|
}
|
|
|
|
export const AppIcon = ({ size }: ServiceIconProps) => null;
|