Skip to content

Commit

Permalink
Add line icon (#15)
Browse files Browse the repository at this point in the history
* add ArrowInsideBox line icon

* Fix indentation

---------

Co-authored-by: pankajdwivedi <pankaj@setu.co>
  • Loading branch information
pankaj0308 and pankajdwivedi authored Feb 29, 2024
1 parent b011b00 commit dad52b7
Show file tree
Hide file tree
Showing 6 changed files with 144 additions and 54 deletions.
18 changes: 18 additions & 0 deletions assets/icons/svgs/svgLineIcons/ArrowInsideBox.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
126 changes: 73 additions & 53 deletions assets/icons/svgs/svgPictograms/MobilityCard.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@setu/crucible-icons",
"version": "1.0.6",
"version": "1.0.7",
"description": "Crucible Icons package",
"license": "MIT",
"main": "./dist/cjs/index.js",
Expand Down
50 changes: 50 additions & 0 deletions src/icons/reactLineIcons/ArrowInsideBox.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// GENERATED BY /script/build.js
// DO NOT EDIT MANUALLY

import * as React from "react";
import { LineIconProps } from "../../types";
import { SVGLineIconWrapper } from "../../styles";

export const ArrowInsideBox = React.forwardRef<SVGSVGElement, LineIconProps>(
({ width = 24, height = 24, ...props }, forwardedRef) => {
return (
<SVGLineIconWrapper {...props}>
<svg
width={width}
height={height}
ref={forwardedRef}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<defs></defs>
<path
d="M11 8L6 12L11 16"
className="stroke"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M17 12H7"
className="stroke"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M3 8.0625V4.125C3 3.50368 3.44772 3 4 3H20C20.5523 3 21 3.50368 21 4.125V19.875C21 20.4963 20.5523 21 20 21H4C3.44772 21 3 20.4963 3 19.875L3 15.9375"
className="stroke"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
</SVGLineIconWrapper>
);
}
);

ArrowInsideBox.displayName = "ArrowInsideBox";

export default ArrowInsideBox;
1 change: 1 addition & 0 deletions src/icons/reactLineIcons/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export { default as Alphabets } from "./Alphabets";
export { default as ArrowInsideBox } from "./ArrowInsideBox";
export { default as ArrowLeft } from "./ArrowLeft";
export { default as ArrowRight } from "./ArrowRight";
export { default as ArrowsOpposite } from "./ArrowsOpposite";
Expand Down
1 change: 1 addition & 0 deletions src/iconsIndex.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ export { default as eSign } from "./icons/reactPictograms/eSign";

// ReactLineIcons
export { default as Alphabets } from "./icons/reactLineIcons/Alphabets";
export { default as ArrowInsideBox } from "./icons/reactLineIcons/ArrowInsideBox";
export { default as ArrowLeft } from "./icons/reactLineIcons/ArrowLeft";
export { default as ArrowRight } from "./icons/reactLineIcons/ArrowRight";
export { default as ArrowsOpposite } from "./icons/reactLineIcons/ArrowsOpposite";
Expand Down

0 comments on commit dad52b7

Please sign in to comment.