scanbot-web-sdk
Version:
Scanbot Web Document and Barcode Scanner SDK
12 lines (11 loc) • 328 B
TypeScript
import React, { CSSProperties } from "react";
interface Props {
foregroundColor: string;
backgroundColor: string;
text: string;
children: React.ReactNode;
badgeStyle?: CSSProperties;
overlap?: 'rectangular' | 'circular';
}
export declare function StyledBadge(props: Props): React.JSX.Element;
export {};