26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
import { createIcon } from '../lib/create-icon'
|
|
|
|
const SvgActivityCenterIcon = 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}
|
|
>
|
|
<path
|
|
fill={props.color}
|
|
fillRule="evenodd"
|
|
d="M6.142 8.741c.164-2.343.787-3.602 1.483-4.28.69-.67 1.542-.861 2.375-.861s1.686.19 2.375.862c.696.677 1.32 1.936 1.483 4.28l.006.08c.052.744.083 1.185.14 1.47.056.285.157.588.322 1.083l.015.046.827 2.479H4.832l.827-2.479.015-.046c.165-.495.266-.798.323-1.083.056-.285.087-.726.14-1.47l.005-.08ZM10 2.4c-1.012 0-2.219.235-3.212 1.202-.986.96-1.668 2.55-1.843 5.055-.06.845-.086 1.202-.125 1.402-.04.2-.115.427-.3.983L3.43 14.31l-.263.79H6.45a3.6 3.6 0 0 0 7.1 0h3.282l-.263-.79-1.09-3.268c-.184-.556-.259-.782-.299-.983-.04-.2-.066-.557-.125-1.402-.175-2.504-.857-4.095-1.843-5.055C12.219 2.635 11.012 2.4 10 2.4ZM8.303 16.197a2.4 2.4 0 0 1-.627-1.097h4.648a2.4 2.4 0 0 1-4.021 1.097Z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
})
|
|
|
|
export default SvgActivityCenterIcon
|