@kryptogo/kryptogokit-sdk-react
Version:
KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.
19 lines (18 loc) • 657 B
TypeScript
import React from 'react';
import { type BoxProps } from '../Box/Box';
export type TextProps = {
id?: string;
as?: 'code' | 'div' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'label' | 'p' | 'span';
children?: React.ReactNode;
color: BoxProps['color'];
font?: BoxProps['fontFamily'];
size?: BoxProps['fontSize'];
style?: React.CSSProperties;
weight?: BoxProps['fontWeight'];
className?: string;
tabIndex?: number;
textAlign?: BoxProps['textAlign'];
display?: BoxProps['display'];
testId?: string;
};
export declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLElement>>;