UNPKG

class101-ui

Version:

A React-based UI Component Library, powered by Class101.

13 lines (12 loc) 363 B
/// <reference types="react" /> import { Typo } from '../Typography'; interface Props { title?: string; subTitle?: string; typography?: Typo; to?: string; href?: string; target?: string; } declare const _default: ({ title, subTitle, typography, to, href, target, ...restProps }: Props) => JSX.Element; export default _default;