@biopassid/face-sdk
Version:
<h1 align="center"> <br> <a href="http://www.biopassid.com"><img src="https://uploads-ssl.webflow.com/5ec3d6d0293839cf102a656a/63a0d4cec83bbddea006d27a_biopassamarelo.svg" alt="BioPass ID" width="200"></a> <br>
14 lines (13 loc) • 415 B
TypeScript
import { IconOptions, TextOptions } from "../../types";
interface ButtonParams {
onPressed?: () => void;
horizontalMargin?: string;
size: string;
padding: string;
backgroundColor: string;
svgIconCreator: (color: string) => string;
label: Required<TextOptions>;
icon: Required<IconOptions>;
}
export default function button(params: ButtonParams): HTMLElement;
export {};