Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Commit

Permalink
fix(Icon.Questionmark): Replace Questionmark icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Broström committed May 22, 2017
1 parent 965f302 commit f4ce1bb
Showing 1 changed file with 7 additions and 16 deletions.
23 changes: 7 additions & 16 deletions src/components/icon/icons/questionmark.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,15 @@ export default function Questionmark({
...styleProp,
...Icon.defaultProps.style,
};

return (
<svg style={style} {...rest}>
<g stroke="none" strokeWidth={strokeWidth} fill="none" fillRule="evenodd">
<circle stroke={stroke} strokeWidth="1.71428571" cx="6" cy="6" r="6" />
<path
d="M4.28571429,4.28571429 C4.28571429,3.34285714 5.05714286,2.57142857 6,2.57142857 C6.94285714,2.57142857
7.71428571,3.34285714 7.71428571,4.28571429 C7.71428571,4.88571429 7.37142857,5.48571429 6.85714286,5.74285714
C6.34285714,6.08571429 6,6.6 6,7.28571429 L6,7.28571429"
stroke={stroke}
strokeWidth="1.71428571"
/>
<rect fill={fill} x="5.14285714" y="8.57142857" width="1.71428571" height="1.71428571" />
<path d="M6,7.28571429 L6,7.71428571" stroke={stroke} strokeWidth="1.71428571" />
<g fillRule="nonzero" fill={fill}>
<path d="M13.6572632,2.34273684 C12.1465263,0.832 10.1372632,0 8,0 C5.86273684,0 3.85431579,0.832 2.34273684,2.34273684 C0.831157895,3.85347368 0,5.86273684 0,7.99915789 C0,10.1355789 0.832,12.1448421 2.34273684,13.6564211 C3.85347368,15.168 5.86273684,15.9991579 8,15.9991579 C10.1372632,15.9991579 12.1456842,15.1671579 13.6572632,13.6564211 C15.1688421,12.1456842 16,10.1364211 16,7.99915789 C16,5.86189474 15.168,3.85347368 13.6572632,2.34273684 Z M8,15.1578947 C4.05305263,15.1578947 0.842105263,11.9469474 0.842105263,8 C0.842105263,4.05305263 4.05305263,0.842105263 8,0.842105263 C11.9469474,0.842105263 15.1578947,4.05305263 15.1578947,8 C15.1578947,11.9469474 11.9469474,15.1578947 8,15.1578947 Z" />
<path d="M8,11.7894737 C7.76757895,11.7894737 7.57894737,11.6008421 7.57894737,11.3684211 L7.57894737,9.68421053 C7.57894737,9.45178947 7.76757895,9.26315789 8,9.26315789 C9.62526316,9.26315789 10.9473684,7.94105263 10.9473684,6.31578947 C10.9473684,4.69052632 9.62526316,3.36842105 8,3.36842105 C6.37473684,3.36842105 5.05263158,4.69052632 5.05263158,6.31578947 C5.05263158,6.54821053 4.864,6.73684211 4.63157895,6.73684211 C4.39915789,6.73684211 4.21052632,6.54821053 4.21052632,6.31578947 C4.21052632,4.22652632 5.91073684,2.52631579 8,2.52631579 C10.0892632,2.52631579 11.7894737,4.22652632 11.7894737,6.31578947 C11.7894737,8.26273684 10.3132632,9.872 8.42105263,10.0816842 L8.42105263,11.3684211 C8.42105263,11.6008421 8.23242105,11.7894737 8,11.7894737 Z" />
<path d="M8,14.3157895 C8,14.3157895 8,14.3157895 8,14.3157895 C7.76757895,14.3157895 7.57894737,14.1271579 7.57894737,13.8947368 L7.57894737,13.0526316 C7.57894737,12.8202105 7.76757895,12.6315789 8,12.6315789 C8,12.6315789 8,12.6315789 8,12.6315789 C8.23242105,12.6315789 8.42105263,12.8202105 8.42105263,13.0526316 L8.42105263,13.8947368 C8.42105263,14.1271579 8.23242105,14.3157895 8,14.3157895 Z" />
</g>
</g>
</svg>
);
Expand All @@ -38,9 +34,4 @@ Questionmark.propTypes = {
strokeWidth: PropTypes.number,
};

Questionmark.defaultProps = {
...Icon.defaultProps,
width: 14,
height: 14,
viewBox: '0 0 14 14',
};
Questionmark.defaultProps = Icon.defaultProps;

0 comments on commit f4ce1bb

Please sign in to comment.