import { DownloadFileSvg } from '@/common/components/atoms/icons'; import { ctw } from '@/common/utils/ctw/ctw'; import { ComponentProps, FunctionComponent } from 'react'; export interface IDownloadFile extends ComponentProps<'div'> { heading: string; } export const DownloadFile: FunctionComponent = ({ heading, className, ...props }) => (

{heading}

);