UNPKG

@dariobrozzi/c64-design-system

Version:

A vintage Design System inspired on Commodore interface

10 lines (9 loc) 314 B
interface TextProps { children: React.ReactNode; as?: React.HTMLElementType; c64?: boolean; size?: 'small' | 'base' | 'large'; centered?: boolean; } export declare function Text({ children, as: HTMLElement, size, c64, centered }: TextProps): import("react/jsx-runtime").JSX.Element; export {};