import React from 'react'; import IconMobile from '../icons/IconMobile'; interface FieldLabelProps { label: string, hasMobileStyles?: boolean, mobileMode?: boolean, onMobileToggle?; } export default function FieldLabel(props:FieldLabelProps) { function handleChange() { props.onMobileToggle() } return (