Skip to content

Instantly share code, notes, and snippets.

@kilgarenone
Created October 23, 2018 08:09
Show Gist options
  • Save kilgarenone/d21545724c6a8e2611caa8880eb0ac19 to your computer and use it in GitHub Desktop.
Save kilgarenone/d21545724c6a8e2611caa8880eb0ac19 to your computer and use it in GitHub Desktop.
Store SVG Icon's path data here
const ICONS = {
CLOSE:
"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z",
ARROW_RIGHT:
"m 13.706875,17.707 5,-5 c 0.391,-0.39 0.391,-1.024 0,-1.414 l -5,-4.9999998 c -0.391,-0.391 -1.024,-0.391 -1.414,0 -0.39,0.391 -0.391,1.024 0,1.414 L 15.585875,11 H 5.9998748 c -0.552,0 -1,0.448 -1,1 0,0.552 0.448,1 1,1 h 9.5860002 l -3.293,3.293 c -0.195,0.195 -0.293,0.451 -0.293,0.707 0,0.256 0.098,0.512 0.293,0.707 0.391,0.391 1.024,0.391 1.414,0 z"
};
export default ICONS;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment