UNPKG

share-button-links-react

Version:
8 lines (7 loc) 310 B
import { BooleanButtonOpts } from '../../components/shared/interfaces'; interface ButtonLinkedInProps extends BooleanButtonOpts { url: string; text: string; } export default function ButtonLinkedIn({ url, text, isRounded, hasIcon, isBordered, isCircled }: ButtonLinkedInProps): JSX.Element; export {};