File tree Expand file tree Collapse file tree 7 files changed +1843
-1841
lines changed
Expand file tree Collapse file tree 7 files changed +1843
-1841
lines changed Original file line number Diff line number Diff line change 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" : {
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" ,
Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change @@ -19,13 +19,15 @@ export { default as IconBookmarked } from "./IconBookmarked";
1919export { default as IconBrain } from "./IconBrain" ;
2020export { default as IconBrokenHeart } from "./IconBrokenHeart" ;
2121export { default as IconBug } from "./IconBug" ;
22+ export { default as IconBurgerMenu } from "./IconBurgerMenu" ;
2223export { default as IconCalendarAdd } from "./IconCalendarAdd" ;
2324export { default as IconCalendar } from "./IconCalendar" ;
2425export { default as IconCancelPresentation } from "./IconCancelPresentation" ;
2526export { default as IconCategory } from "./IconCategory" ;
2627export { default as IconChat } from "./IconChat" ;
2728export { default as IconCheck } from "./IconCheck" ;
2829export { default as IconClock } from "./IconClock" ;
30+ export { default as IconClose2 } from "./IconClose2" ;
2931export { default as IconCloseCircle } from "./IconCloseCircle" ;
3032export { default as IconClose } from "./IconClose" ;
3133export { default as IconCodeBlock } from "./IconCodeBlock" ;
You can’t perform that action at this time.
0 commit comments