UNPKG

@keen.io/ui-core

Version:

Keen visual components library

10 lines (9 loc) 285 B
import React from 'react'; import { TextVariant } from '../types'; declare type Props = { children: React.ReactNode; color?: string; variant?: TextVariant; }; export declare const Title: ({ children, variant, color, }: Props) => JSX.Element; export default Title;