diff --git a/packages/svg/src/icons/LeftAngledArrow/LeftAngledArrowIcon.tsx b/packages/svg/src/icons/LeftAngledArrow/LeftAngledArrowIcon.tsx new file mode 100644 index 000000000..c45ecbda1 --- /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 000000000..acd89dcd5 --- /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 85e6aef26..e5339a954 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';