React CSS Styling
function AlertBox({ message = 'This is an alert', isUrgent = true }) {
const style = {
padding: 12,
borderRadius: 4,
backgroundColor: isUrgent ? '#fdecea' : '#eef6ff',
color: isUrgent ? '#b00020' : '#0b4a8f',
fontWeight: isUrgent ? 'bold' : 'normal',
};
return <div style={style}>{message}</div>;
}
export default AlertBox;