UNPKG

react-css-library

Version:

## Library Overview Developed by Marco Duarte and David Artavia, this library leverages React, CSS, and TypeScript to provide a comprehensive set of design components.

8 lines (7 loc) 179 B
import { CSSProperties, ReactNode } from 'react'; export interface IProps { children?: ReactNode; style?: CSSProperties; onClick?: () => void; items?: string[]; }