import { theme } from "@prismicio/editor-ui"; import { clsx } from "clsx"; import type { FC } from "react"; import styles from "./Divider.module.css"; type DividerProps = { color?: keyof typeof theme.color; variant?: "dashed" | "edgeFaded"; className?: string; }; export const Divider: FC = (props) => { const { variant = "dashed", color = "currentColor", className } = props; return (
); };