import React from 'react' import useTheme from '../styles/use-theme' export interface InputBlockLabelLabel {} const InputBlockLabel: React.FC> = ({ children }) => { const theme = useTheme() return ( ) } const MemoInputBlockLabel = React.memo(InputBlockLabel) export default MemoInputBlockLabel