@accelint/design-toolkit
Version:
An open-source component library to serve as part of the entire ecosystem of UX for Accelint.
11 lines (8 loc) • 369 B
TypeScript
import { ComponentProps } from 'react';
import { VariantProps } from 'tailwind-variants';
import { LinesStyles } from './styles.js';
type LinesProps = Omit<ComponentProps<'div'>, 'size'> & LinesStylesVariants & {
size?: 'large' | 'medium' | 'small';
};
type LinesStylesVariants = VariantProps<typeof LinesStyles>;
export type { LinesProps, LinesStylesVariants };