import type { FC, HTMLAttributes } from 'react';
import styles from './legend.module.scss';
export type LegendProps = HTMLAttributes;
/**
* Legend component.
*/
export const Legend: FC = ({
children,
className = '',
...props
}) => {
const legendClass = `${styles.legend} ${className}`;
return (
);
};