Divider
Divider
is a component that represents a division between elements.
Theming
The Divider
is a single part component.
If you want to change the style of the component, please check here.
export const Divider: ComponentStyle<"Divider"> = {baseStyle: {borderColor: "border",},variants: {dashed: {borderStyle: "dashed",},dotted: {borderStyle: "dotted",},solid: {borderStyle: "solid",},},defaultProps: { variant: "solid" },}
Edit this page on GitHub