4
0
forked from crowetic/commerce

46 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-10-01 20:40:40 -05:00
import React from 'react'
2020-09-29 19:55:48 -03:00
const Trash = ({ ...props }) => {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M3 6H21"
2020-09-30 10:51:53 -03:00
stroke="currentColor"
2020-09-29 19:55:48 -03:00
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8 6V4C8 3.46957 8.21071 2.96086 8.58579 2.58579C8.96086 2.21071 9.46957 2 10 2H14C14.5304 2 15.0391 2.21071 15.4142 2.58579C15.7893 2.96086 16 3.46957 16 4V6M19 6V20C19 20.5304 18.7893 21.0391 18.4142 21.4142C18.0391 21.7893 17.5304 22 17 22H7C6.46957 22 5.96086 21.7893 5.58579 21.4142C5.21071 21.0391 5 20.5304 5 20V6H19Z"
2020-09-30 10:51:53 -03:00
stroke="currentColor"
2020-09-29 19:55:48 -03:00
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M10 11V17"
2020-09-30 10:51:53 -03:00
stroke="currentColor"
2020-09-29 19:55:48 -03:00
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M14 11V17"
2020-09-30 10:51:53 -03:00
stroke="currentColor"
2020-09-29 19:55:48 -03:00
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
2020-10-01 20:40:40 -05:00
)
}
2020-09-29 19:55:48 -03:00
2020-10-01 20:40:40 -05:00
export default Trash