import { LabeledInput } from '@/components/ra-inputs/LabeledInput'; import { useTheme } from '@emotion/react'; import { styled } from '@mui/material/styles'; import { BooleanInputProps, BooleanInput as RaBooleanInput } from 'react-admin'; const StyledBooleanInput = styled(RaBooleanInput, { slot: 'Root' })(() => ({ marginTop: '0 !important' })); function BooleanInput({ ...props }: BooleanInputProps): JSX.Element { const theme = useTheme(); return ( // @ts-ignore {/** @ts-ignore */} ); } export { BooleanInput }; export type { BooleanInputProps };