UNPKG

@danilandreev/material-docs

Version:

material-docs - react framework for easy creating documentation site in material design style.

26 lines (20 loc) 622 B
/* * Author: Andrieiev Danil | danssg08@gmail.com | https://github.com/DanilAndreev * Copyright (C) 2020. */ /// <reference types="react" /> import Stylable from "../../interfaces/Stylable"; import Containerable from "../../interfaces/Containerable"; export const displayName: string; export interface BoldProps extends Stylable, Containerable { } /** * Bold - react component, designed to make text bold. * @param {BoldProps} props * @constructor * @see http://material-docs.com/component-apis/bold * @example * <Bold> I am bold </Bold> */ export default function Bold(props: BoldProps): JSX.Element;