UNPKG

share-button-links-react

Version:
9 lines (8 loc) 330 B
import { BooleanButtonOpts } from '../../components/shared/interfaces'; interface ButtonRedditProps extends BooleanButtonOpts { url: string; text: string; title: string; } export default function ButtonReddit({ url, title, text, isRounded, hasIcon, isBordered, isCircled }: ButtonRedditProps): JSX.Element; export {};