import { Button, ButtonProps } from 'antd'; import { HeartFilled } from '@ant-design/icons'; import { FC } from 'react'; import styles from './ActionButton/ActionButton.module.scss'; export type FollowButtonProps = ButtonProps & { onClick?: () => void; props?: ButtonProps; }; export const FollowButton: FC = ({ onClick, props }) => ( );