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.

8 lines (7 loc) 141 B
import React from "react"; type Props = { size: number; color?: string; }; declare const Star: React.FC<Props>; export default Star;