34 lines
889 B
TypeScript
34 lines
889 B
TypeScript
import React from "react";
|
|
|
|
type Props = React.SVGProps<SVGSVGElement>;
|
|
|
|
const BagIcon = (props: Props) => (
|
|
<svg
|
|
width={24}
|
|
height={24}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...props}
|
|
>
|
|
<path
|
|
d="M7.5 8V7.03C7.5 4.78 9.31 2.57 11.56 2.36C14.24 2.1 16.5 4.21 16.5 6.84V8.22"
|
|
stroke="currentColor"
|
|
strokeWidth={1.5}
|
|
strokeMiterlimit={10}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M8.99983 21H14.9998C19.0198 21 19.7398 19.39 19.9498 17.43L20.6998 11.43C20.9698 8.99 20.2698 7 15.9998 7H7.99983C3.72983 7 3.02983 8.99 3.29983 11.43L4.04983 17.43C4.25983 19.39 4.97983 21 8.99983 21Z"
|
|
stroke="currentColor"
|
|
strokeWidth={1.5}
|
|
strokeMiterlimit={10}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
export default BagIcon;
|