@accelint/design-toolkit
Version:
An open-source component library to serve as part of the entire ecosystem of UX for Accelint.
9 lines (6 loc) • 340 B
TypeScript
import { ComponentPropsWithRef } from 'react';
import { VariantProps } from 'tailwind-variants';
import { SkeletonStyles } from './styles.js';
type SkeletonStyleVariants = VariantProps<typeof SkeletonStyles>;
type SkeletonProps = ComponentPropsWithRef<'div'> & SkeletonStyleVariants;
export type { SkeletonProps, SkeletonStyleVariants };