UNPKG

@zohodesk/dot

Version:

In this Library, we Provide Some Basic Components to Build Your Application

34 lines 1.16 kB
import PropTypes from 'prop-types'; export const AlarmAlertIcon_propTypes = { type: PropTypes.string, variant: PropTypes.oneOf(['primary', 'secondary']) }; export const AlertIcons_propTypes = { type: PropTypes.oneOf(['success', 'error', 'danger', 'warning', 'info', 'notification', 'alarm', 'primary']), variant: PropTypes.oneOf(['primary', 'secondary']), dataSelectorId: PropTypes.string }; export const DangerAlertIcon_propTypes = { type: PropTypes.string, variant: PropTypes.oneOf(['primary', 'secondary']) }; export const ErrorAlertIcon_propTypes = { type: PropTypes.string, variant: PropTypes.oneOf(['primary', 'secondary']) }; export const InfoAlertIcon_propTypes = { type: PropTypes.string, variant: PropTypes.oneOf(['primary', 'secondary']) }; export const NotificationAlertIcon_propTypes = { type: PropTypes.string, variant: PropTypes.oneOf(['primary', 'secondary']) }; export const SuccessAlertIcon_propTypes = { type: PropTypes.string, variant: PropTypes.oneOf(['primary', 'secondary']) }; export const WarningAlertIcon_propTypes = { type: PropTypes.string, variant: PropTypes.oneOf(['primary', 'secondary']) };