From dad52b7241fc2b69f016a3b936d493479ca968c4 Mon Sep 17 00:00:00 2001 From: pankaj0308 <105493144+pankaj0308@users.noreply.github.com> Date: Thu, 29 Feb 2024 17:39:14 +0530 Subject: [PATCH] Add line icon (#15) * add ArrowInsideBox line icon * Fix indentation --------- Co-authored-by: pankajdwivedi --- .../svgs/svgLineIcons/ArrowInsideBox.svg | 18 +++ .../icons/svgs/svgPictograms/MobilityCard.svg | 126 ++++++++++-------- package.json | 2 +- src/icons/reactLineIcons/ArrowInsideBox.tsx | 50 +++++++ src/icons/reactLineIcons/index.ts | 1 + src/iconsIndex.tsx | 1 + 6 files changed, 144 insertions(+), 54 deletions(-) create mode 100644 assets/icons/svgs/svgLineIcons/ArrowInsideBox.svg create mode 100644 src/icons/reactLineIcons/ArrowInsideBox.tsx diff --git a/assets/icons/svgs/svgLineIcons/ArrowInsideBox.svg b/assets/icons/svgs/svgLineIcons/ArrowInsideBox.svg new file mode 100644 index 0000000..c0c4db0 --- /dev/null +++ b/assets/icons/svgs/svgLineIcons/ArrowInsideBox.svg @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/assets/icons/svgs/svgPictograms/MobilityCard.svg b/assets/icons/svgs/svgPictograms/MobilityCard.svg index 41a6060..84605d3 100644 --- a/assets/icons/svgs/svgPictograms/MobilityCard.svg +++ b/assets/icons/svgs/svgPictograms/MobilityCard.svg @@ -1,59 +1,79 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/package.json b/package.json index 0cea6a4..b26c638 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/icons/reactLineIcons/ArrowInsideBox.tsx b/src/icons/reactLineIcons/ArrowInsideBox.tsx new file mode 100644 index 0000000..d9dfe0e --- /dev/null +++ b/src/icons/reactLineIcons/ArrowInsideBox.tsx @@ -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( + ({ width = 24, height = 24, ...props }, forwardedRef) => { + return ( + + + + + + + + + ); + } +); + +ArrowInsideBox.displayName = "ArrowInsideBox"; + +export default ArrowInsideBox; diff --git a/src/icons/reactLineIcons/index.ts b/src/icons/reactLineIcons/index.ts index 5d0d4f5..22a06fe 100644 --- a/src/icons/reactLineIcons/index.ts +++ b/src/icons/reactLineIcons/index.ts @@ -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"; diff --git a/src/iconsIndex.tsx b/src/iconsIndex.tsx index b202b8b..8d53c25 100644 --- a/src/iconsIndex.tsx +++ b/src/iconsIndex.tsx @@ -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";