mirror of
https://github.com/tabler/tabler.git
synced 2026-08-13 14:52:22 +04:00
7 lines
222 B
TypeScript
7 lines
222 B
TypeScript
import icons from '@/data/icons.json';
|
|
import clsx from 'clsx';
|
|
|
|
export default function IconSvg({ svg, className }) {
|
|
return <span className={clsx('icon-svg', className)} dangerouslySetInnerHTML={{ __html: svg }} />;
|
|
}
|