import React, { forwardRef } from 'react'
import { Box, Flex, SVG } from './Base'
import { getMarginProps, omitMarginProps } from '@utils/helpers'
export const Label = forwardRef((props, ref) => (
))
export const Input = forwardRef((props, ref) => (
))
export const Textarea = forwardRef((props, ref) => (
))
const SelectArrow = props => (
)
export const Select = forwardRef((props, ref) => (
))
const RadioChecked = props => (
)
const RadioUnchecked = props => (
)
const RadioIcon = props => (
<>
>
)
export const Radio = forwardRef(
({ className, sx, variant = 'radio', ...props }, ref) => (
)
)
const CheckboxChecked = props => (
)
const CheckboxUnchecked = props => (
)
const CheckboxIcon = props => (
<>
>
)
export const Checkbox = forwardRef(
({ className, sx, variant = 'checkbox', ...props }, ref) => (
)
)
export const Switch = forwardRef(({ checked, ...props }, ref) => {
const switchSize = 6
return (
)
})
export const Slider = forwardRef(({ ...props }, ref) => (
))