UNPKG

tharikida-ui

Version:

A modern, lightweight React UI component library with built-in theming, accessibility, and full TypeScript support. Create beautiful, responsive, and customizable web apps faster with ready-to-use components for any project.

10 lines (9 loc) 268 B
export interface IAppProps { size?: number; hideCircle?: boolean; backGroundColor?: string; color?: string; fontFamily?: string; fontSize?: number; } export default function ActiveTag(props: IAppProps): import("react/jsx-runtime").JSX.Element;