UNPKG

nice-ui

Version:

React design system, components, and utilities

15 lines (14 loc) 327 B
import * as React from 'react'; export interface Props { right?: React.ReactNode; h2?: boolean; h3?: boolean; h4?: boolean; h5?: boolean; h6?: boolean; back?: React.ReactNode; backTo?: string; children?: React.ReactNode; } declare const PageTitle: React.FC<Props>; export default PageTitle;