box-ui-elements-mlh
Version:
27 lines (23 loc) • 1.13 kB
Flow
// @flow
import * as React from 'react';
import { bdlBoxBlue } from '../../styles/variables';
import AccessibleSVG from '../accessible-svg';
import type { TwoTonedIcon } from '../flowTypes';
const IconExclamationMark = ({ className = '', height = 24, title, width = 24 }: TwoTonedIcon) => (
<AccessibleSVG
className={`icon-exclamation-mark-2 ${className}`}
title={title}
width={width}
height={height}
viewBox="0 0 32 32"
>
<circle className="background-color" fill={bdlBoxBlue} fillRule="nonzero" cx="16" cy="16" r="12" />
<path
className="foreground-color"
d="M16,8 C16.8284271,8 17.5,8.67157288 17.5,9.5 L17.5,17.5 C17.5,18.3284271 16.8284271,19 16,19 C15.1715729,19 14.5,18.3284271 14.5,17.5 L14.5,9.5 C14.5,8.67157288 15.1715729,8 16,8 Z M16,24 C15.1715729,24 14.5,23.3284271 14.5,22.5 C14.5,21.6715729 15.1715729,21 16,21 C16.8284271,21 17.5,21.6715729 17.5,22.5 C17.5,23.3284271 16.8284271,24 16,24 Z"
fill="#FFFFFF"
fillRule="nonzero"
/>
</AccessibleSVG>
);
export default IconExclamationMark;