import { Button, CheckIcon } from "palette" import React from "react" import { ButtonProps } from "." type FollowButtonProps = Omit< ButtonProps, "variant" | "size" | "longestText" | "icon" | "children" > & { isFollowed: boolean } export const FollowButton: React.FC = ({ isFollowed, ...rest }) => { return ( ) }