@mhjadav/gatsby-theme-factly
Version:
64 lines (59 loc) • 2.44 kB
JavaScript
import React from 'react';
export const False = props => (
<svg
xmlns="http://www.w3.org/2000/svg"
id="icon_false"
viewBox="0 0 512 512"
{...props}
>
<path d="M255.997,460.351c112.685,0,204.355-91.668,204.355-204.348S368.682,51.648,255.997,51.648 c-112.68,0-204.348,91.676-204.348,204.355S143.317,460.351,255.997,460.351z M255.997,83.888 c94.906,0,172.123,77.209,172.123,172.115c0,94.898-77.217,172.117-172.123,172.117c-94.9,0-172.108-77.219-172.108-172.117 C83.888,161.097,161.096,83.888,255.997,83.888z" />
<path d="M172.077,341.508c3.586,3.523,8.25,5.27,12.903,5.27c4.776,0,9.54-1.84,13.151-5.512l57.865-58.973l57.878,58.973 c3.609,3.672,8.375,5.512,13.146,5.512c4.658,0,9.316-1.746,12.902-5.27c7.264-7.125,7.369-18.793,0.242-26.051l-58.357-59.453 l58.357-59.461c7.127-7.258,7.021-18.92-0.242-26.047c-7.252-7.123-18.914-7.018-26.049,0.24l-57.878,58.971l-57.865-58.971 c-7.135-7.264-18.797-7.363-26.055-0.24c-7.258,7.127-7.369,18.789-0.236,26.047l58.351,59.461l-58.351,59.453 C164.708,322.715,164.819,334.383,172.077,341.508z" />
</svg>
);
export const True = props => (
<svg
{...props}
id="icon_true"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 60 60"
>
<path
d="M30,6C16.7666016,6,6,16.7666016,6,30s10.7666016,24,24,24s24-10.7666016,24-24S43.2333984,6,30,6z M30,52
C17.8691406,52,8,42.1308594,8,30S17.8691406,8,30,8s22,9.8691406,22,22S42.1308594,52,30,52z"
/>
<polygon points="25.608 36.577 19.116 30.086 17.702 31.5 25.608 39.405 42.298 22.715 40.884 21.301" />
</svg>
);
export const SliderArrowRight = props => (
<svg
{...props}
id="slider_arrow_right"
version="1.1"
viewBox="0 0 15 26"
xmlSpace="preserve"
width="15px"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
>
<polygon
fill="#231F20"
points="2.019,0.58 -0.035,2.634 10.646,13.316 -0.035,23.997 2.019,26.052 14.755,13.316 "
/>
</svg>
);
export const SliderArrowLeft = props => (
<svg
{...props}
id="slider_arrow_left"
version="1.1"
viewBox="0 0 15 26"
xmlSpace="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
>
<polygon
fill="#231F20"
points="12.885,0.58 14.969,2.664 4.133,13.5 14.969,24.336 12.885,26.42 2.049,15.584 -0.035,13.5 "
/>
</svg>
);