import React from 'react'; import { Label } from '../../../Label'; import { Flex } from '../../../Layout'; import { Switch } from '../../../Switch'; const SwitchWithLabel = ({ label, icon, id, onChange, checked, hide = false, }: { label: string; icon?: React.ReactNode; id: string; onChange: (value: boolean) => void; checked: boolean; hide?: boolean; }) => { return ( ); }; export default SwitchWithLabel;