From ee8539a9351374a719c9026f85d85e7b4ea6e8f5 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Sat, 25 Sep 2021 16:11:31 +0200 Subject: chore: move tweaks to separate subfolder --- components/EnableSection.tsx | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 components/EnableSection.tsx (limited to 'components/EnableSection.tsx') diff --git a/components/EnableSection.tsx b/components/EnableSection.tsx deleted file mode 100644 index b7981b3..0000000 --- a/components/EnableSection.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import { Text, Box, Collapse, Switch } from '@chakra-ui/react' -import React from 'react' -import { InfoTooltip } from './InfoTooltip' - -export interface EnableSectionProps { - label: string - value: boolean | number - onChange: () => void - infoText?: string - children: React.ReactNode -} - -export const EnableSection = (props: EnableSectionProps) => { - const { value, onChange, label, infoText, children } = props - return ( - - - - {label} - {infoText && } - - - - - - {children} - - - - ) -} -- cgit v1.2.3