UNPKG

funuicss

Version:

React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b

17 lines (16 loc) 527 B
import { ReactNode, HTMLProps } from 'react'; import * as React from 'react'; interface Circle_Props extends HTMLProps<HTMLDivElement> { size?: number; funcss?: string; bg?: string; color?: string; children?: ReactNode; hoverable?: boolean; raised?: boolean; bordered?: boolean; key?: React.Key; onClick?: () => void; } export default function Circle({ size, funcss, bg, color, children, hoverable, raised, key, onClick, bordered, ...rest }: Circle_Props): React.JSX.Element; export {};