18 lines
587 B
TypeScript
18 lines
587 B
TypeScript
import React from 'react';
|
|
import { CustomSVGProps } from '../type';
|
|
import '../index.less';
|
|
|
|
const Failurefilled = (props: CustomSVGProps) => (
|
|
<span className={'icon'}>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
d="M8 1a7 7 0 1 1 0 14A7 7 0 0 1 8 1Zm0 9.5a.9.9 0 1 0 0 1.8.9.9 0 0 0 0-1.8ZM8 4l-.067.002a.93.93 0 0 0-.86.995l.283 3.905a.645.645 0 0 0 1.288 0l.283-3.905.003-.067A.93.93 0 0 0 8 4Z"
|
|
/>
|
|
</svg>
|
|
</span>
|
|
);
|
|
|
|
export default Failurefilled;
|