Skip to content

Instantly share code, notes, and snippets.

@alobato
Created February 20, 2019 18:46
Show Gist options
  • Save alobato/9ee417b4d17d4bee3147e819cce181ac to your computer and use it in GitHub Desktop.
Save alobato/9ee417b4d17d4bee3147e819cce181ac to your computer and use it in GitHub Desktop.
import React from 'react'
export const CloseIcon = props => (
<svg
viewBox="0 0 30 30"
{...props}
width={30}
height={30}
fill='currentColor'
>
<path
d='M 7.9785156 5.9804688 A 2.0002 2.0002 0 0 0 6.5859375 9.4140625 L 12.171875 15 L 6.5859375 20.585938 A 2.0002 2.0002 0 1 0 9.4140625 23.414062 L 15 17.828125 L 20.585938 23.414062 A 2.0002 2.0002 0 1 0 23.414062 20.585938 L 17.828125 15 L 23.414062 9.4140625 A 2.0002 2.0002 0 0 0 21.960938 5.9804688 A 2.0002 2.0002 0 0 0 20.585938 6.5859375 L 15 12.171875 L 9.4140625 6.5859375 A 2.0002 2.0002 0 0 0 7.9785156 5.9804688 z'
/>
</svg>
)
export const VotersIcon = props => (
<svg viewBox='0 0 24 24' width={24} {...props}>
<path fill='currentColor' d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z' />
</svg>
)
export const OrdersIcon = props => (
<svg viewBox='0 0 24 24' width={24} {...props}>
<path fill='currentColor' d='M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z' />
</svg>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment