29 lines
595 B
TypeScript
29 lines
595 B
TypeScript
import { createIcon } from '../lib/create-icon'
|
|
|
|
const SvgPendingStateIcon = createIcon(props => {
|
|
return (
|
|
<svg
|
|
{...props}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={props.width}
|
|
height={props.height}
|
|
fill="none"
|
|
viewBox="0 0 20 20"
|
|
focusable={false}
|
|
aria-hidden={true}
|
|
>
|
|
<circle
|
|
cx={10}
|
|
cy={10}
|
|
r={7}
|
|
stroke="#647084"
|
|
strokeWidth={1.2}
|
|
opacity={0.4}
|
|
/>
|
|
<path stroke="#647084" strokeWidth={1.2} d="m13 12-3-1.5V7" />
|
|
</svg>
|
|
)
|
|
})
|
|
|
|
export default SvgPendingStateIcon
|