@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
24 lines (19 loc) • 643 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { AllHTMLAttributes, ReactNode } from 'react';
declare enum Colors {
Blue = "blue",
Green = "green",
Pink = "pink",
Purple = "purple",
Yellow = "yellow"
}
declare const DEFAULT_COLOR = Colors.Pink;
interface CuteIconProps extends AllHTMLAttributes<HTMLDivElement> {
icon: ReactNode;
color?: `${Colors}`;
}
declare const CuteIcon: {
({ color, icon, ...props }: CuteIconProps): react_jsx_runtime.JSX.Element;
displayName: string;
};
export { CuteIcon, Colors as CuteIconColors, type CuteIconProps, DEFAULT_COLOR as DEFAULT_CUTE_ICON_COLOR };