Sha256: f7fa7bb95a75f4feb513c0c0b6bb6270212263a09d5b8978a14076467d7a4870
Contents?: true
Size: 617 Bytes
Versions: 2
Compression:
Stored size: 617 Bytes
Contents
import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type DetailProps = { aria?: { [key: string]: string; }; bold?: boolean; children?: React.ReactChild[] | React.ReactChild; className?: string; color?: 'light' | 'default' | 'lighter' | 'link' | 'error' | 'success'; dark?: boolean; data?: { [key: string]: string; }; id?: string; tag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'div'; text?: string; } & GlobalProps; declare const Detail: (props: DetailProps) => JSX.Element; export default Detail;
Version data entries
2 entries across 2 versions & 1 rubygems