UNPKG

@pomegranate-ui/maracuya-ui

Version:

Maracuya is a design system built with React, Typescript & emotion

13 lines (12 loc) 325 B
import { CSSProperties } from "react"; export interface ICoreBase { children?: React.ReactNode; /** * Why className? * styled can style any component as long as it accepts a className prop. */ className?: string; style?: CSSProperties; modifier?: string; active?: string; }