@konstructio/ui
Version:
A set of reusable and customizable React components built for konstruct.io
18 lines (17 loc) • 392 B
TypeScript
import { FC, HTMLAttributes } from 'react';
/**
* A horizontal divider/separator line.
*
* @example
* ```tsx
* <div>
* <p>Section 1</p>
* <Divider />
* <p>Section 2</p>
* </div>
* ```
*
* @see {@link https://konstructio.github.io/konstruct-ui/?path=/docs/components-divider--docs Storybook}
*/
declare const Divider: FC<HTMLAttributes<HTMLDivElement>>;
export { Divider };