Appearance
Function: Badge()
ts
function Badge(props: UiBadgeProps): Block;Defined in: src/renderer/blocks/index.ts:962
Badge display component.
Parameters
| Parameter | Type |
|---|---|
props | UiBadgeProps |
Returns
Examples
ts
Badge({name: 'status', label: 'Completed'});ts
Badge({
name: 'priority',
label: 'High priority',
icon: 'warning',
bgColor: '#ff4444',
color: '#ffffff',
});