Skip to content

Commit 37763c2

Browse files
committed
Add 2 new icons
1 parent 9f0659e commit 37763c2

File tree

7 files changed

+1843
-1841
lines changed

7 files changed

+1843
-1841
lines changed

assets/icons/icon-burger-menu.svg

Lines changed: 3 additions & 0 deletions
Loading

assets/icons/icon-close-2.svg

Lines changed: 3 additions & 0 deletions
Loading

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@programmer_network/yail",
3-
"version": "1.0.194",
3+
"version": "1.0.195",
44
"description": "Programmer Network's official UI library for React",
55
"author": "Aleksandar Grbic - (https://programmer.network)",
66
"publishConfig": {
@@ -86,7 +86,7 @@
8686
"@typescript-eslint/parser": "7.2.0",
8787
"@vitejs/plugin-react": "4.2.1",
8888
"@vitest/ui": "1.4.0",
89-
"ajv": "^8.13.0",
89+
"ajv": "8.13.0",
9090
"autoprefixer": "10.4.18",
9191
"client": "link:@types/vite-plugin-svgr/client",
9292
"core": "link:@types/@popperjs/core",

pnpm-lock.yaml

Lines changed: 1805 additions & 1839 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import type { SVGProps } from "react";
2+
3+
const SvgIconBurgerMenu = (props: SVGProps<SVGSVGElement>) => (
4+
<svg
5+
fill='none'
6+
stroke='currentColor'
7+
aria-hidden='true'
8+
viewBox='0 0 24 24'
9+
{...props}
10+
>
11+
<path d='M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5' />
12+
</svg>
13+
);
14+
export default SvgIconBurgerMenu;
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import type { SVGProps } from "react";
2+
3+
const SvgIconClose2 = (props: SVGProps<SVGSVGElement>) => (
4+
<svg
5+
fill='none'
6+
stroke='currentColor'
7+
aria-hidden='true'
8+
viewBox='0 0 24 24'
9+
{...props}
10+
>
11+
<path d='M6 18 18 6M6 6l12 12' />
12+
</svg>
13+
);
14+
export default SvgIconClose2;

src/Components/Icons/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,15 @@ export { default as IconBookmarked } from "./IconBookmarked";
1919
export { default as IconBrain } from "./IconBrain";
2020
export { default as IconBrokenHeart } from "./IconBrokenHeart";
2121
export { default as IconBug } from "./IconBug";
22+
export { default as IconBurgerMenu } from "./IconBurgerMenu";
2223
export { default as IconCalendarAdd } from "./IconCalendarAdd";
2324
export { default as IconCalendar } from "./IconCalendar";
2425
export { default as IconCancelPresentation } from "./IconCancelPresentation";
2526
export { default as IconCategory } from "./IconCategory";
2627
export { default as IconChat } from "./IconChat";
2728
export { default as IconCheck } from "./IconCheck";
2829
export { default as IconClock } from "./IconClock";
30+
export { default as IconClose2 } from "./IconClose2";
2931
export { default as IconCloseCircle } from "./IconCloseCircle";
3032
export { default as IconClose } from "./IconClose";
3133
export { default as IconCodeBlock } from "./IconCodeBlock";

0 commit comments

Comments
 (0)