File tree Expand file tree Collapse file tree
packages/react/src/icon/demo Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import * as Icons from '@tiny-design/icons';
44import type { IconProps } from '@tiny-design/icons' ;
55import Input from '../../input' ;
66import Message from '../../message' ;
7- import { useTheme } from '../../_utils/use-theme'
7+ import { useTheme } from '../../_utils/use-theme' ;
88
99const iconEntries = Object . entries ( Icons ) . filter (
1010 ( [ key ] ) => key . startsWith ( 'Icon' )
@@ -38,7 +38,7 @@ const SvgIconList = (): JSX.Element => {
3838 const [ keyword , setKeyword ] = useState ( '' ) ;
3939 const [ activeIconName , setActiveIconName ] = useState ( '' ) ;
4040 const deferredKeyword = useDeferredValue ( keyword ) ;
41- const { resolvedTheme } = useTheme ( )
41+ const { resolvedTheme } = useTheme ( ) ;
4242
4343 const normalizedKeyword = deferredKeyword . trim ( ) . toLowerCase ( ) ;
4444 const filteredIconEntries = iconEntries . filter ( ( [ name ] ) =>
You can’t perform that action at this time.
0 commit comments