@danilandreev/material-docs
Version:
material-docs - react framework for easy creating documentation site in material design style.
20 lines (16 loc) • 498 B
TypeScript
/*
* Author: Andrieiev Danil | danssg08@gmail.com | https://github.com/DanilAndreev
* Copyright (C) 2020.
*/
/// <reference types="react" />
import {TagableProps} from "../Tagable/Tagable";
export const displayName: string;
/**
* H6 - react component, designed to create h4 header.
* @param {TagableProps} props
* @constructor
* @see https://material-docs.com/component-apis/h6
* @example
* <H6>I am h6 header without tag</H6>
*/
export function H6(props: TagableProps): JSX.Element;