import { addIcon, addCollection, disableCache } from '@iconify-icon/react'; import chartIcon from '@iconify-icons/mdi-light/chart-histogram'; import { Checkbox } from './demo-components/Checkbox'; import { InlineDemo } from './demo-components/Inline'; import { OfflineUsageDemo } from './demo-components/UsageOffline'; import { FullUsageDemo } from './demo-components/UsageAPI'; import { TestIcon } from './test-components/TestIcon'; import './App.css'; // Disable cache disableCache('all'); // Add few custom icons addIcon('demo', chartIcon); addIcon('experiment2', { width: 16, height: 16, body: '', }); // Add mdi-light icons with custom prefix addCollection({ prefix: 'test', icons: { alert1: { body: '', }, link1: { body: '', }, }, width: 24, height: 24, }); function App() { return (

Checkbox

); } export default App;