Skip to content

Instantly share code, notes, and snippets.

@bogdanpetru
Created January 6, 2017 12:21
Show Gist options
  • Save bogdanpetru/cab3f97aac8ef642184e2e854942199c to your computer and use it in GitHub Desktop.
Save bogdanpetru/cab3f97aac8ef642184e2e854942199c to your computer and use it in GitHub Desktop.
function CloseIcon({
size = 14,
rest,
}) {
return <svg
{...rest}
width={size}
height={size}
viewBox="0 0 24 24"
>
<path
d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z"
/>
</svg>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment