@ntragas/pouncejstest
Version:
A collection of UI components from Panther labs
14 lines (13 loc) • 393 B
TypeScript
import React from 'react';
import { BoxProps } from '../Box';
export interface DividerProps extends BoxProps {
/** The direction of the divider */
orientation?: 'horizontal' | 'vertical';
}
/**
* Extends Box.
*
* A Divider is a simple component that will render a line to separate content into two sections
*/
declare const Divider: React.FC<DividerProps>;
export default Divider;