/** * External dependencies */ import { IconProps } from '@wordpress/icons/build-types/icon'; import { SVG } from '@wordpress/primitives'; interface AlertProps { status?: 'warning' | 'error' | 'success' | 'info'; props?: IconProps; } const statusToColorMap = { warning: '#F0B849', error: '#CC1818', success: '#46B450', info: '#0073AA', }; const Alert = ( { status = 'warning', ...props }: AlertProps ) => ( ); export default Alert;