UNPKG

@geist-ui/react

Version:

Modern and minimalist React UI library.

11 lines (10 loc) 447 B
import React from 'react'; interface Props { className?: string; } declare type NativeAttrs = Omit<React.HTMLAttributes<HTMLHeadingElement>, keyof Props>; export declare type ModalSubtitleProps = Props & NativeAttrs; declare const ModalSubtitle: React.ForwardRefExoticComponent<Props & NativeAttrs & { children?: React.ReactNode; } & import("../use-scaleable").ScaleableProps & React.RefAttributes<unknown>>; export default ModalSubtitle;