@accelint/design-toolkit
Version:
An open-source component library to serve as part of the entire ecosystem of UX for Accelint.
19 lines (16 loc) • 568 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { LinesProps } from './types.js';
import 'react';
import 'tailwind-variants';
import './styles.js';
/**
* Lines - Decorative rule/connector lines used by components like Tree
*
* Renders horizontal or vertical rule lines used for visual grouping and
* tree branch connectors. Visibility and variant control the appearance.
*
* @example
* <Lines variant="branch" />
*/
declare function Lines({ className, size, variant, isVisible, }: LinesProps): react_jsx_runtime.JSX.Element;
export { Lines };