| 1 |
/** |
| 2 |
* WordPress dependencies |
| 3 |
*/ |
| 4 |
import { Path, SVG } from '@wordpress/primitives' |
| 5 |
|
| 6 |
const alert = ( |
| 7 |
<SVG viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> |
| 8 |
<Path |
| 9 |
d="M7.32457 0.907043C3.98785 0.907043 1.2829 3.61199 1.2829 6.94871C1.2829 10.2855 3.98785 12.9904 7.32457 12.9904C10.6613 12.9904 13.3663 10.2855 13.3663 6.94871C13.3663 3.61199 10.6613 0.907043 7.32457 0.907043V0.907043Z" |
| 10 |
stroke="currentColor" |
| 11 |
strokeWidth="1.25" |
| 12 |
fill="none" |
| 13 |
/> |
| 14 |
<Path |
| 15 |
d="M6.34684 9.72526C6.34684 9.18224 6.77716 8.74168 7.32018 8.74168C7.8632 8.74168 8.30377 9.18224 8.30377 9.72526C8.30377 10.2683 7.8632 10.6986 7.32018 10.6986C6.77716 10.6986 6.34684 10.2683 6.34684 9.72526Z" |
| 16 |
fill="currentColor" |
| 17 |
/> |
| 18 |
<Path |
| 19 |
d="M7.9759 7.11261C7.93492 7.47121 7.67878 7.76834 7.32018 7.76834C6.95134 7.76834 6.70544 7.46097 6.6747 7.11261L6.34684 4.1721C6.28537 3.67006 6.81814 3.19876 7.32018 3.19876C7.82222 3.19876 8.35499 3.67006 8.30377 4.1721L7.9759 7.11261Z" |
| 20 |
fill="currentColor" |
| 21 |
/> |
| 22 |
</SVG> |
| 23 |
) |
| 24 |
|
| 25 |
export default alert |
| 26 |
|