share-button-links-react
Version:
Share buttons links for websites, blogs and more.
32 lines • 1.07 kB
TypeScript
import PropTypes from "prop-types";
declare function ButtonEmailIcon({ url, to, subject, content, isRounded, isAllWhite, isWhited, isBordered, isCircled }: {
url?: string | undefined;
to: any;
subject?: string | undefined;
content?: string | undefined;
isRounded?: boolean | undefined;
isAllWhite?: boolean | undefined;
isWhited?: boolean | undefined;
isBordered?: boolean | undefined;
isCircled?: boolean | undefined;
}): any;
declare namespace ButtonEmailIcon {
var propTypes: {
url: PropTypes.Validator<string>;
to: PropTypes.Requireable<string>;
subject: PropTypes.Validator<string>;
content: PropTypes.Validator<string>;
isRounded: PropTypes.Requireable<boolean>;
isAllWhite: PropTypes.Requireable<boolean>;
};
var defaultProps: {
url: string;
to: string;
subject: string;
content: string;
isRounded: boolean;
isAllWhite: boolean;
};
}
export default ButtonEmailIcon;
//# sourceMappingURL=ButtonEmailIcon.d.ts.map