nes-ui-react
Version:
A design system that paints the web in 8 bits.
9 lines (8 loc) • 432 B
TypeScript
/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface BlockTextProps extends IdProps, StyleProps, React.PropsWithChildren<any> {
shadow?: boolean;
backgroundColor?: string;
}
export declare const BlockText: ({ id, style, children, className, shadow, backgroundColor }: BlockTextProps) => import("react/jsx-runtime").JSX.Element;