@start-base/start-ui
Version:
<p align="center"> <a href="https://startbase.dev" target="_blank"> <img src="https://startbase.dev/apple-touch-icon.png" width="60px" style="padding-top: 60px" /> </a> </p>
15 lines (11 loc) • 486 B
TypeScript
import React$1 from 'react';
interface DividerProps extends React.HTMLAttributes<HTMLDivElement> {
variant?: 'full' | 'start' | 'center' | 'end';
orientation?: 'horizontal' | 'vertical';
align?: 'start' | 'center' | 'end';
color?: string;
size?: `${string}px` | `${string}rem`;
round?: boolean;
}
declare const Divider: React$1.ForwardRefExoticComponent<DividerProps & React$1.RefAttributes<HTMLDivElement>>;
export { type DividerProps, Divider as default };