Files
baya-monorepo/client/src/components/common/AppIcon/utils.ts
T
2026-06-16 01:32:43 +03:30

12 lines
258 B
TypeScript

import { SVGAttributes } from 'react';
/**
* Props to use with custom SVG icons, similar to AppIcon's Props
*/
export interface IconProps extends SVGAttributes<SVGElement> {
color?: string;
icon?: string;
size?: string | number;
title?: string;
}