@atlaskit/flag
Version:
A flag is used for confirmations, alerts, and acknowledgments that require minimal user interaction, often displayed using a flag group.
22 lines • 704 B
JavaScript
import React from 'react';
import ErrorIcon from '@atlaskit/icon/core/status-error';
import InformationIcon from '@atlaskit/icon/core/status-information';
import SuccessIcon from '@atlaskit/icon/core/status-success';
import WarningIcon from '@atlaskit/icon/core/status-warning';
export var flagIconGlyph = {
error: /*#__PURE__*/React.createElement(ErrorIcon, {
label: ""
}),
info: /*#__PURE__*/React.createElement(InformationIcon, {
label: ""
}),
normal: /*#__PURE__*/React.createElement(InformationIcon, {
label: ""
}),
success: /*#__PURE__*/React.createElement(SuccessIcon, {
label: ""
}),
warning: /*#__PURE__*/React.createElement(WarningIcon, {
label: ""
})
};