import { bindGlobalStyle, CssProps } from 'lupine.components'; export const RadioLabelComponent = (props: { label: string; name: string; checked?: boolean; disabled?: boolean; onChange?: (checked: boolean) => void; className?: string; radioClassname?: string; }) => { const css: CssProps = { display: 'flex', '& > label': { display: 'flex', alignItems: 'center', }, }; bindGlobalStyle('radio-label-component', css); return (