4
0
forked from crowetic/commerce
Files
assets
components
auth
cart
core
icons
product
ui
Button
Container
Grid
Hero
Input
Link
LoadingDots
Logo
Logo.tsx
index.ts
Marquee
Modal
Sidebar
Skeleton
Text
Toast
README.md
context.tsx
index.ts
wishlist
config
lib
pages
public
utils
.gitignore
.prettierignore
README.md
codegen.json
global.d.ts
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
commerce/components/ui/Logo/Logo.tsx
2020-10-19 15:22:48 -03:00

22 lines
588 B
TypeScript

const Logo = ({ className = '', ...props }) => (
<svg
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
{...props}
>
<rect width="100%" height="100%" rx="16" fill="var(--secondary)" />
<path
fillRule="evenodd"
clipRule="evenodd"
d="M17.6482 10.1305L15.8785 7.02583L7.02979 22.5499H10.5278L17.6482 10.1305ZM19.8798 14.0457L18.11 17.1983L19.394 19.4511H16.8453L15.1056 22.5499H24.7272L19.8798 14.0457Z"
fill="var(--primary)"
/>
</svg>
)
export default Logo