mentalHealth/01-Web/packages/ui/common/Icon.tsx

12 lines
264 B
TypeScript
Raw Normal View History

2024-02-18 06:52:01 +00:00
import type { IconProps } from '@iconify/react';
import { Icon as IconifyIcon } from '@iconify/react';
export const Icon: React.FC<IconProps> = (props) => {
return (
<IconifyIcon
className="text-theme text-4 xl:text-5"
{...props}
/>
);
};