File size: 1,094 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import React from 'react';
const StoreIcon = ({ className }) => (
<svg name="Store" className={className} width="24" height="24" viewBox="0 0 24 24">
<g fill="none" fillRule="evenodd">
<path
fill="currentColor"
d="M12,13 C10.895,13 10,12.105 10,11 C10,9.895 10.895,9 12,9 C13.105,9 14,9.895 14,11 C14,12.105 13.105,13 12,13 Z M16,18 L18,18 L18,8.74394144 C18.4691684,8.90976867 18.9740469,9 19.5,9 C19.6690045,9 19.8358331,8.99068334 20,8.97253561 L20,18 L22,18 L22,22 L2,22 L2,18 L4,18 L4,8.97253561 C4.16416693,8.99068334 4.33099545,9 4.5,9 C5.02595313,9 5.53083161,8.90976867 6,8.74394144 L6,18 L8,18 L8,16 C8,14.67 10.665,14 12,14 C13.335,14 16,14.67 16,16 L16,18 Z M2,2 L22,2 L22,4.5 C22,5.88071187 20.8807119,7 19.5,7 C18.1192881,7 17,5.88071187 17,4.5 C17,5.88071187 15.8807119,7 14.5,7 C13.1192881,7 12,5.88071187 12,4.5 C12,5.88071187 10.8807119,7 9.5,7 C8.11928813,7 7,5.88071187 7,4.5 C7,5.88071187 5.88071187,7 4.5,7 C3.11928813,7 2,5.88071187 2,4.5 L2,2 Z"
/>
<rect width="24" height="24" />
</g>
</svg>
);
export default StoreIcon;
|