import { Show, children } from 'solid-js' import * as StyledNumberInput from './styled/number-input' export interface NumberInputProps extends StyledNumberInput.RootProps {} export const NumberInput = (props: NumberInputProps) => { const getChildren = children(() => props.children) return ( {getChildren()} ) } const ChevronUpIcon = () => ( Chevron Up Icon ) const ChevronDownIcon = () => ( Chevron Down Icon )