You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
509 B
13 lines
509 B
import React from 'react'
|
|
|
|
const SvgError = props => (
|
|
<svg viewBox="0 0 17 17" width="1em" height="1em" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
d="M9.512 8.333l1.91-1.91a.833.833 0 0 0-1.178-1.179l-1.91 1.91-1.911-1.91a.833.833 0 1 0-1.179 1.179l1.91 1.91-1.91 1.911a.833.833 0 1 0 1.179 1.179l1.91-1.911 1.911 1.91a.833.833 0 0 0 1.179-1.178l-1.911-1.91zm-1.179 8.334A8.333 8.333 0 1 1 8.333 0a8.333 8.333 0 0 1 0 16.667z"
|
|
/>
|
|
</svg>
|
|
)
|
|
|
|
export default SvgError
|
|
|