@stihl-design-system/components
Version:
Welcome to the STIHL Design System react component library.
9 lines (8 loc) • 306 B
TypeScript
interface SystemFeedbackIcons {
valid: 'circle-check-colored';
invalid: 'diamond-exclamationmark-colored';
warning: 'triangle-exclamationmark-colored';
}
export declare const systemFeedbackIcons: SystemFeedbackIcons;
export type SystemFeedbackType = 'valid' | 'invalid' | 'warning';
export {};