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