UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 312 B
import React from 'react'; import { CSSProperties, ReactNode } from 'react'; type Props = { icon: ReactNode; title: string; className?: string; style?: CSSProperties; }; declare const IconHeading: ({ icon, title, className, style }: Props) => React.JSX.Element; export { IconHeading };