import { GenesysDevIcon, GenesysDevIcons } from 'genesys-dev-icons'; import React from 'react'; import { BaseComponentProps } from '..'; import './DxLabel.scss'; interface IProps extends BaseComponentProps { label?: string; description?: string; useFieldset?: boolean; className?: string; children: React.ReactNode; } export default function DxLabel(props: IProps) { const hasLabel = props.label && props.label !== ''; const description = props.description ? (