@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
13 lines (12 loc) • 565 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import { BordersProps } from "../system/borders.js";
import { SystemProps } from "../system/system.js";
//#region src/divider/divider.types.d.ts
type DividerProps = SystemProps & ThemingProps<'Divider'> & {
/** Children are disabled for this component. */children?: never; /** Renders the line vertically using 100% height. */
isVertical?: boolean; /** Defines thickness of the line. */
width?: BordersProps['borderWidth'];
};
//#endregion
export { DividerProps };
//# sourceMappingURL=divider.types.d.ts.map