/** @jsx jsx */ import { PropsWithChildren } from 'react'; import { jsx } from '@emotion/react'; import { wrapperStyle, labelStyle } from './Input'; const Wrapper: React.FC> = ({ label, children, ...props }) => { return ( ); }; export type WrapperProps = { className?: string; label?: any; }; export default Wrapper;