UNPKG

wix-style-react

Version:
22 lines 754 B
export default SocialButton; /** Social networks share button with title */ declare function SocialButton({ dataHook, text, onClick, icon, disabled }: { dataHook: any; text: any; onClick: any; icon: any; disabled: any; }): React.JSX.Element; declare namespace SocialButton { namespace propTypes { let dataHook: PropTypes.Requireable<string>; let text: PropTypes.Requireable<PropTypes.ReactNodeLike>; let onClick: PropTypes.Requireable<(...args: any[]) => any>; let icon: PropTypes.Requireable<string>; let disabled: PropTypes.Requireable<boolean>; } let displayName: string; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=SocialButton.d.ts.map