import React, { forwardRef } from "react"; import { Separator } from "radix-ui"; import * as Theme from "../theme"; import type * as WPDS from "../theme"; const NAME = "Divider"; const StyledSeparator = Theme.styled(Separator.Root, { "&[data-orientation=horizontal]": { height: 1, width: "100%" }, "&[data-orientation=vertical]": { height: "100%", width: 1 }, variants: { variant: { default: { backgroundColor: Theme.theme.colors.outline, }, strong: { backgroundColor: Theme.theme.colors.primary, }, }, }, }); interface DividerProps extends Separator.SeparatorProps { /** Override CSS */ css?: WPDS.CSS; /** Sets the color of the divider * @default default */ variant?: "default" | "strong"; } export const Divider = forwardRef( ({ css, variant = "default", ...props }, ref) => { return ; } ); Divider.displayName = NAME; export type { DividerProps };