Skip to content

Commit

Permalink
Release v0.6.2 (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
bexsoft committed Jun 20, 2023
1 parent 2cf0f64 commit caf41dd
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/cjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17227,7 +17227,7 @@ var bc = function (e, t, a) {
e
),
o.createElement("path", {
d: "m33.27,219.82c.11-9.44-.8-18.86-2.72-28.1C12.27,185.4,0,168.18,0,148.84V45.34C0,20.3,20.3,0,45.34,0h161.65c25.04,0,45.34,20.3,45.34,45.34h0v103.5c0,25.04-20.3,45.34-45.34,45.34H74.85c-6.33,6.52-17.95,16.82-36.98,28.4-.45.28-.97.42-1.5.42-1.73-.02-3.11-1.44-3.09-3.17v-.02Z",
d: "m35.47,235.89c.11-9.4-.8-18.79-2.71-27.99-18.21-6.29-30.44-23.44-30.44-42.71V62.1c0-24.94,20.22-45.16,45.16-45.16h161.01c24.94,0,45.16,20.22,45.16,45.16h0v103.09c0,24.94-20.22,45.16-45.16,45.16H76.89c-6.31,6.49-17.88,16.75-36.84,28.28-.45.28-.97.42-1.5.42-1.72-.02-3.1-1.43-3.08-3.15v-.02Z",
})
);
}),
Expand Down
2 changes: 1 addition & 1 deletion dist/cjs/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24072,7 +24072,7 @@ var Ac = function (e, t, n) {
t
),
e.createElement("path", {
d: "m33.27,219.82c.11-9.44-.8-18.86-2.72-28.1C12.27,185.4,0,168.18,0,148.84V45.34C0,20.3,20.3,0,45.34,0h161.65c25.04,0,45.34,20.3,45.34,45.34h0v103.5c0,25.04-20.3,45.34-45.34,45.34H74.85c-6.33,6.52-17.95,16.82-36.98,28.4-.45.28-.97.42-1.5.42-1.73-.02-3.11-1.44-3.09-3.17v-.02Z",
d: "m35.47,235.89c.11-9.4-.8-18.79-2.71-27.99-18.21-6.29-30.44-23.44-30.44-42.71V62.1c0-24.94,20.22-45.16,45.16-45.16h161.01c24.94,0,45.16,20.22,45.16,45.16h0v103.09c0,24.94-20.22,45.16-45.16,45.16H76.89c-6.31,6.49-17.88,16.75-36.84,28.28-.45.28-.97.42-1.5.42-1.72-.02-3.1-1.43-3.08-3.15v-.02Z",
})
);
},
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/Icons/ChatIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const ChatIcon = (props: SVGProps<SVGSVGElement>) => (
viewBox="0 0 256 256"
{...props}
>
<path d="m33.27,219.82c.11-9.44-.8-18.86-2.72-28.1C12.27,185.4,0,168.18,0,148.84V45.34C0,20.3,20.3,0,45.34,0h161.65c25.04,0,45.34,20.3,45.34,45.34h0v103.5c0,25.04-20.3,45.34-45.34,45.34H74.85c-6.33,6.52-17.95,16.82-36.98,28.4-.45.28-.97.42-1.5.42-1.73-.02-3.11-1.44-3.09-3.17v-.02Z" />
<path d="m35.47,235.89c.11-9.4-.8-18.79-2.71-27.99-18.21-6.29-30.44-23.44-30.44-42.71V62.1c0-24.94,20.22-45.16,45.16-45.16h161.01c24.94,0,45.16,20.22,45.16,45.16h0v103.09c0,24.94-20.22,45.16-45.16,45.16H76.89c-6.31,6.49-17.88,16.75-36.84,28.28-.45.28-.97.42-1.5.42-1.72-.02-3.1-1.43-3.08-3.15v-.02Z" />
</svg>
);

Expand Down
8 changes: 6 additions & 2 deletions src/components/Menu/Menu.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ import StoryThemeProvider from "../../utils/StoryThemeProvider";
import { GlobalStyles } from "../index";
import Box from "../Box/Box";
import TestIcon from "../../utils/TestIcon";
import ChatIcon from "../Icons/ChatIcon";
import LambdaIcon from "../Icons/LambdaIcon";
import LambdaBalloonIcon from "../Icons/LambdaBalloonIcon";
import LambdaNotificationsIcon from "../Icons/LambdaNotificationsIcon";

export default {
title: "MDS/Layout/Menu",
Expand Down Expand Up @@ -166,7 +170,7 @@ Horizontal.args = {
horizontal: true,
options: [
{
icon: <TestIcon />,
icon: <ChatIcon />,
path: "/testPath1",
name: "Test 1",
group: "Group 1",
Expand All @@ -176,7 +180,7 @@ Horizontal.args = {
},
},
{
icon: <TestIcon />,
icon: <LambdaNotificationsIcon />,
name: "Test 5",
group: "Group 2",
id: "test5",
Expand Down

0 comments on commit caf41dd

Please sign in to comment.