From cca59636aa7f6156b2810be57a65f0ea0da662d4 Mon Sep 17 00:00:00 2001 From: Senali Date: Tue, 19 Dec 2023 00:59:47 +0530 Subject: [PATCH] feat: Added LeftAngledArrowIcon Signed-off-by: Senali --- .../LeftAngledArrow/LeftAngledArrowIcon.tsx | 32 +++++++++++++++++++ .../svg/src/icons/LeftAngledArrow/index.ts | 1 + packages/svg/src/icons/index.ts | 1 + 3 files changed, 34 insertions(+) create mode 100644 packages/svg/src/icons/LeftAngledArrow/LeftAngledArrowIcon.tsx create mode 100644 packages/svg/src/icons/LeftAngledArrow/index.ts diff --git a/packages/svg/src/icons/LeftAngledArrow/LeftAngledArrowIcon.tsx b/packages/svg/src/icons/LeftAngledArrow/LeftAngledArrowIcon.tsx new file mode 100644 index 00000000..c45ecbda --- /dev/null +++ b/packages/svg/src/icons/LeftAngledArrow/LeftAngledArrowIcon.tsx @@ -0,0 +1,32 @@ +import { + DEFAULT_FILL, + DEFAULT_FILL_NONE, + DEFAULT_HEIGHT, + DEFAULT_WIDTH +} from '../../constants/constants'; +import { IconProps } from '../types'; + +export const LeftAngledArrowIcon = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL, + ...props +}: IconProps): JSX.Element => { + return ( + + + + ); +}; + +export default LeftAngledArrowIcon; diff --git a/packages/svg/src/icons/LeftAngledArrow/index.ts b/packages/svg/src/icons/LeftAngledArrow/index.ts new file mode 100644 index 00000000..acd89dcd --- /dev/null +++ b/packages/svg/src/icons/LeftAngledArrow/index.ts @@ -0,0 +1 @@ +export { default as LeftAngledArrowIcon } from './LeftAngledArrowIcon'; diff --git a/packages/svg/src/icons/index.ts b/packages/svg/src/icons/index.ts index 85e6aef2..e5339a95 100644 --- a/packages/svg/src/icons/index.ts +++ b/packages/svg/src/icons/index.ts @@ -37,6 +37,7 @@ export * from './Mesh'; // export { default as OriginalApplicationFileIcon } from "./OriginalApplicationFileIcon"; export * from './Environment'; export * from './Kubernetes'; +export * from './LeftAngledArrow'; export * from './LeftArrow'; export * from './PanTool'; export * from './Pattern';