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