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