gab-social/app/javascript/gabsocial/assets/star_outline_icon.js

24 lines
1.3 KiB
JavaScript

const StarOutlineIcon = ({
className = '',
size = '24px',
title = '',
}) => (
<svg
className={className}
version='1.1'
xmlns='http://www.w3.org/2000/svg'
x='0px'
y='0px'
width={size}
height={size}
viewBox='0 0 24 24'
xmlSpace='preserve'
aria-label={title}
>
<g>
<path d="M 5.37 23.5 C 5.11 23.5 4.85 23.42 4.62 23.26 C 4.21 22.96 4.02 22.45 4.13 21.95 L 5.67 15.15 L 0.44 10.56 C 0.05 10.22 -0.09 9.69 0.06 9.2 C 0.22 8.72 0.65 8.37 1.16 8.32 L 8.09 7.7 L 10.82 1.29 C 11.02 0.82 11.48 0.52 12 0.52 C 12.51 0.52 12.96 0.82 13.17 1.29 L 15.91 7.7 L 22.83 8.32 C 23.34 8.37 23.77 8.72 23.93 9.2 C 24.09 9.69 23.94 10.22 23.55 10.56 L 18.32 15.15 L 19.86 21.95 C 19.98 22.45 19.79 22.96 19.37 23.26 C 18.95 23.56 18.4 23.59 17.97 23.32 L 12 19.75 L 6.02 23.32 C 5.82 23.45 5.6 23.5 5.37 23.5 Z M 12 18.21 C 12.22 18.21 12.45 18.28 12.65 18.4 L 18.29 21.77 L 16.83 15.35 C 16.72 14.89 16.88 14.42 17.23 14.11 L 22.18 9.77 L 15.64 9.18 C 15.16 9.14 14.76 8.84 14.58 8.41 L 12 2.36 L 9.41 8.41 C 9.23 8.84 8.82 9.14 8.36 9.18 L 1.82 9.77 L 6.76 14.11 C 7.11 14.42 7.27 14.89 7.16 15.35 L 5.71 21.77 L 11.34 18.4 C 11.54 18.28 11.77 18.21 12 18.21 Z M 8.03 7.82 C 8.03 7.82 8.03 7.82 8.03 7.82 Z M 15.96 7.82 L 15.96 7.82 C 15.96 7.82 15.96 7.82 15.96 7.82 Z M 15.96 7.82" />
</g>
</svg>
)
export default StarOutlineIcon