12 lines
264 B
TypeScript
12 lines
264 B
TypeScript
|
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}
|
||
|
/>
|
||
|
);
|
||
|
};
|