@dolaanpls/react-awesome-button
Version:
Performant, extendable, highly customisable, production ready React Component that renders an animated basic set of UI buttons
20 lines (19 loc) • 596 B
TypeScript
import { ButtonType } from '../AwesomeButton/index';
type SharerType = {
image?: string;
message?: string;
phone?: string;
url?: string;
user?: string;
};
type DimensionsType = {
width: number;
height: number;
};
type SocialButtonType = {
sharer?: SharerType;
icon?: boolean | DimensionsType;
dimensions?: DimensionsType;
};
declare const AwesomeButtonSocial: ({ onPress, children, icon, sharer, dimensions, type, ...extra }: SocialButtonType & ButtonType) => import("react/jsx-runtime").JSX.Element;
export default AwesomeButtonSocial;