import type { FC } from 'react' import type { DividerProps } from '.' import Divider from '.' import classNames from '@/utils/classnames' export type DividerWithLabelProps = DividerProps & { label: string } export const DividerWithLabel: FC = (props) => { const { label, className, ...rest } = props return
{label}
} export default DividerWithLabel