mirror of
https://github.com/vercel/commerce.git
synced 2025-07-25 11:11:24 +00:00
main menu added
This commit is contained in:
16
components/icons/close.tsx
Normal file
16
components/icons/close.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import clsx from 'clsx';
|
||||
|
||||
export default function CloseIcon(props: React.ComponentProps<'svg'>) {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
strokeWidth={0.7}
|
||||
stroke="currentColor"
|
||||
className={clsx(props?.className || 'h-10 w-10')}
|
||||
>
|
||||
<path strokeLinecap="round" strokeLinejoin="round" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
);
|
||||
}
|
@@ -1,10 +1,12 @@
|
||||
import clsx from 'clsx';
|
||||
|
||||
export default function LogoIcon(props: React.ComponentProps<'svg'>) {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 800 543"
|
||||
className="h-10 w-10 fill-current"
|
||||
className={clsx(props?.className || 'h-10 w-10 fill-current')}
|
||||
>
|
||||
<path
|
||||
fillRule="evenodd"
|
||||
|
@@ -1,3 +1,5 @@
|
||||
import clsx from 'clsx';
|
||||
|
||||
export default function MenuIcon(props: React.ComponentProps<'svg'>) {
|
||||
return (
|
||||
<svg
|
||||
@@ -6,7 +8,7 @@ export default function MenuIcon(props: React.ComponentProps<'svg'>) {
|
||||
viewBox="0 0 24 24"
|
||||
strokeWidth={0.7}
|
||||
stroke="currentColor"
|
||||
className="h-10 w-10"
|
||||
className={clsx(props?.className || 'h-10 w-10')}
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
|
Reference in New Issue
Block a user