@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 599 B
TypeScript
import { AnchorHTMLAttributes, type HTMLAttributes } from 'react';
export * from './customStylish';
export * from './customToken';
export type DivProps = HTMLAttributes<HTMLDivElement>;
export type VideoProps = HTMLAttributes<HTMLVideoElement>;
export type SvgProps = HTMLAttributes<SVGSVGElement>;
export type ImgProps = HTMLAttributes<HTMLImageElement>;
export type AProps = AnchorHTMLAttributes<HTMLAnchorElement>;
export type InputProps = HTMLAttributes<HTMLInputElement>;
export type TextAreaProps = HTMLAttributes<HTMLTextAreaElement>;
export type SpanProps = HTMLAttributes<HTMLSpanElement>;