@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
18 lines (17 loc) • 629 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { BordersProps } from "../system/borders.js";
import { SystemProps } from "../system/system.js";
import "../system/index.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