UNPKG

surf-design-system

Version:
9 lines (8 loc) 289 B
/** @jsxRuntime classic */ /** @jsx jsx */ export interface DividerProps { value?: string; textColor?: string; dividerColor?: string; } export default function Divider({ value, dividerColor, textColor }: DividerProps): import("@emotion/react/jsx-runtime").JSX.Element;