Sha256: 6e5dfb9f4bf1351e8c723941a9cacba132160f199fdef62be53dadcbfc9faacc
Contents?: true
Size: 847 Bytes
Versions: 2
Compression:
Stored size: 847 Bytes
Contents
import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type SizeType = 1 | 2 | 3 | 4 | "1" | "2" | "3" | "4"; declare type SizeResponsiveType = { [key: string]: SizeType; }; declare type TitleProps = { aria?: { [key: string]: string; }; bold?: boolean; children?: React.ReactChild[] | React.ReactChild; className?: string; color?: "default" | "light" | "lighter" | "success" | "error" | "link"; data?: { [key: string]: string; }; id?: string; size?: SizeType | SizeResponsiveType; tag?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "div" | "span"; text?: string; truncate?: null | "1" | "2" | "3" | "4" | "5"; variant?: null | "link"; } & GlobalProps; declare const Title: (props: TitleProps) => React.ReactElement; export default Title;
Version data entries
2 entries across 2 versions & 1 rubygems