diff options
Diffstat (limited to 'src/utils/providers/prism-theme.tsx')
| -rw-r--r-- | src/utils/providers/prism-theme.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/utils/providers/prism-theme.tsx b/src/utils/providers/prism-theme.tsx index 6ecbb1d..c063bd5 100644 --- a/src/utils/providers/prism-theme.tsx +++ b/src/utils/providers/prism-theme.tsx @@ -7,9 +7,7 @@ import { useEffect, useState, } from 'react'; -import useAttributes from '../hooks/use-attributes'; -import useLocalStorage from '../hooks/use-local-storage'; -import useQuerySelectorAll from '../hooks/use-query-selector-all'; +import { useAttributes, useLocalStorage, useQuerySelectorAll } from '../hooks'; export type PrismTheme = 'dark' | 'light' | 'system'; export type ResolvedPrismTheme = Exclude<PrismTheme, 'system'>; |
