UNPKG

hh-ui-components

Version:
11 lines (10 loc) 252 B
import { FC } from "react"; interface FooterAboutProps { className?: string; title: string; description: string; btnLabel: string; onClick?: () => void; } declare const FooterAbout: FC<FooterAboutProps>; export default FooterAbout;