UNPKG

share-button-links-react

Version:
9 lines (8 loc) 333 B
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 {};