import { CustomIcon, CustomIconName } from 'components/CustomIcon' interface SettingsTabButtonProps { checked: boolean icon: CustomIconName text: string } export function SettingsTabButton(props: SettingsTabButtonProps) { const { checked, icon, text } = props return (
{text}
) }