@helpwave/hightide
Version:
helpwave's component and theming library
15 lines (12 loc) • 408 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
type Size = 'small' | 'large';
type HelpwaveBadgeProps = {
size?: Size;
title?: string;
className?: string;
};
/**
* A Badge with the helpwave logo and the helpwave name
*/
declare const HelpwaveBadge: ({ size, title, className }: HelpwaveBadgeProps) => react_jsx_runtime.JSX.Element;
export { HelpwaveBadge, type HelpwaveBadgeProps };