import { useConfigs } from 'containers/ConfigsContext' import * as React from 'react' import { Config } from 'utils/configHelper' const options: { key: Config['icons'] value: Config['icons'] label: string }[] = [ { key: 'rich', value: 'rich', label: `VSCode icons`, }, { key: 'dim', value: 'dim', label: `VSCode icons (single color)`, }, { key: 'native', value: 'native', label: `Native GitHub icons`, }, ] type Props = {} export function FileTreeIconSettings(props: React.PropsWithChildren) { const configContext = useConfigs() return (

File Tree Icons

Icons can make a difference.
) }