export interface Props { text?: string, spacing?: "small" | "large", className?: string, } const Divider = ({ text, spacing, className }: Props): JSX.Element => { const getContentIdentifier = () => { if (!text) return '' const base = 'uik-divider--text-' return base + text.toLowerCase().replaceAll(" ", "-") } return (