share-button-links-react
Version:
Share buttons links for websites, blogs and more.
10 lines (9 loc) • 383 B
TypeScript
import { BooleanButtonOpts } from '../../components/shared/interfaces';
interface ButtonPinterestProps extends BooleanButtonOpts {
url: string;
text: string;
description: string;
mediaUrl: string;
}
export default function ButtonPinterest({ url, text, mediaUrl, description, isRounded, hasIcon, isBordered, isCircled }: ButtonPinterestProps): JSX.Element;
export {};