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