nes-ui-react
Version:
A design system that paints the web in 8 bits.
8 lines (7 loc) • 382 B
TypeScript
/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface HeroProps extends StyleProps, React.PropsWithChildren<any>, IdProps {
variant?: 'flower' | 'dash';
}
export declare const Hero: ({ id, style, children, className, variant }: HeroProps) => import("react/jsx-runtime").JSX.Element;