import { SizeableComponentProps } from '../theme' // e.g. key is xs, md, lg, xl etc export interface Sizes { [key: string]: number } export interface BaseTextProps extends SizeableComponentProps { color?: string // a custom color success?: boolean warning?: boolean error?: boolean } export interface TextProps extends BaseTextProps { inline?: boolean } export interface LinkProps extends BaseTextProps { to: string }