UNPKG

burdy

Version:

Open Source Headless Platform

12 lines (11 loc) 257 B
import React from 'react'; interface HeadingProps { title?: string; subtitle?: string; loading?: boolean; children?: any; noPadding?: boolean; noGap?: boolean; } declare const Heading: React.FC<HeadingProps>; export default Heading;