share-button-links-react
Version:
Share buttons links for websites, blogs and more.
8 lines (7 loc) • 310 B
TypeScript
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 {};