generated from dwd/boilarplate-astro-tailwind
35 lines
805 B
JavaScript
35 lines
805 B
JavaScript
import * as React from "react"
|
|
|
|
function SvgTick({ height, width}) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
// width={17.899}
|
|
// height={17.676}
|
|
width={width}
|
|
height={height}
|
|
// viewBox="0 0 17.899 17.676"
|
|
viewBox={`0 0 ${width} ${height}`}
|
|
// {...props}
|
|
>
|
|
<defs>
|
|
<style>
|
|
{
|
|
".prefix__a_greenTick{fill:none;stroke:#17c558!important;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.4px}"
|
|
}
|
|
</style>
|
|
</defs>
|
|
<path
|
|
className="prefix__a_greenTick"
|
|
d="M16.91 8.136v.741a8 8 0 11-4.744-7.312"
|
|
/>
|
|
<path
|
|
className="prefix__a_greenTick"
|
|
d="M16.909 2.492l-8.094 8.1-2.428-2.426"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default SvgTick
|