shift button prop types inside button component

connect-component
Ryukemeister 2023-10-13 12:58:41 +05:30
parent 342820e0bd
commit cac1e6880d
1 changed files with 0 additions and 11 deletions

View File

@ -1,5 +1,3 @@
import type React from "react";
export interface AtomsGlobalConfigProps {
/**
* API endpoint for the Booker component to fetch data from,
@ -7,12 +5,3 @@ export interface AtomsGlobalConfigProps {
*/
webAppUrl?: string;
}
export type SVGComponent = React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
export interface ConnectButtonProps {
buttonText?: string;
onButtonClick: (payload: { cb: (err: { error: { message: string } } | null) => void }) => Promise<void>;
stylesClassname?: string;
icon?: JSX.Element;
}