diff --git a/web/src/components/icons/nucleo_icon_outlined/I12px_house.tsx b/web/src/components/icons/nucleo_icon_outlined/I12px_house.tsx index 7daac2578..2672f43ae 100644 --- a/web/src/components/icons/nucleo_icon_outlined/I12px_house.tsx +++ b/web/src/components/icons/nucleo_icon_outlined/I12px_house.tsx @@ -1,24 +1,29 @@ import React from 'react'; import { iconProps } from './iconProps'; +function I12px_house(props: iconProps) { + const fill = props.fill || 'currentColor'; + const secondaryfill = props.secondaryfill || fill; + const strokewidth = props.strokewidth || 1; + const width = props.width || '1em'; + const height = props.height || '1em'; + const title = props.title || '12px house'; + return ( + + {title} + + + + + ); +} -function house(props: iconProps) { - const fill = props.fill || 'currentColor'; - const secondaryfill = props.secondaryfill || fill; - const strokewidth = props.strokewidth || 1; - const width = props.width || '1em'; - const height = props.height || '1em'; - const title = props.title || "12px house"; - - return ( - - {title} - - - - - ); -}; - -export default house; \ No newline at end of file +export default I12px_house; diff --git a/web/src/components/icons/nucleo_icon_outlined/I12px_image-mountain-2.tsx b/web/src/components/icons/nucleo_icon_outlined/I12px_image-mountain-2.tsx index 4f380f002..04998df8b 100644 --- a/web/src/components/icons/nucleo_icon_outlined/I12px_image-mountain-2.tsx +++ b/web/src/components/icons/nucleo_icon_outlined/I12px_image-mountain-2.tsx @@ -1,25 +1,37 @@ import React from 'react'; import { iconProps } from './iconProps'; +function I12px_imageMountain2(props: iconProps) { + const fill = props.fill || 'currentColor'; + const secondaryfill = props.secondaryfill || fill; + const strokewidth = props.strokewidth || 1; + const width = props.width || '1em'; + const height = props.height || '1em'; + const title = props.title || '12px image mountain 2'; + return ( + + {title} + + + + + + ); +} -function imageMountain2(props: iconProps) { - const fill = props.fill || 'currentColor'; - const secondaryfill = props.secondaryfill || fill; - const strokewidth = props.strokewidth || 1; - const width = props.width || '1em'; - const height = props.height || '1em'; - const title = props.title || "12px image mountain 2"; - - return ( - - {title} - - - - - - ); -}; - -export default imageMountain2; \ No newline at end of file +export default I12px_imageMountain2; diff --git a/web/src/components/icons/nucleo_icon_outlined/I12px_image.tsx b/web/src/components/icons/nucleo_icon_outlined/I12px_image.tsx index 05bb15981..ce0037347 100644 --- a/web/src/components/icons/nucleo_icon_outlined/I12px_image.tsx +++ b/web/src/components/icons/nucleo_icon_outlined/I12px_image.tsx @@ -1,26 +1,43 @@ import React from 'react'; import { iconProps } from './iconProps'; +function I12px_image(props: iconProps) { + const fill = props.fill || 'currentColor'; + const secondaryfill = props.secondaryfill || fill; + const strokewidth = props.strokewidth || 1; + const width = props.width || '1em'; + const height = props.height || '1em'; + const title = props.title || '12px image'; + return ( + + {title} + + + + + + + ); +} -function image(props: iconProps) { - const fill = props.fill || 'currentColor'; - const secondaryfill = props.secondaryfill || fill; - const strokewidth = props.strokewidth || 1; - const width = props.width || '1em'; - const height = props.height || '1em'; - const title = props.title || "12px image"; - - return ( - - {title} - - - - - - - ); -}; - -export default image; \ No newline at end of file +export default I12px_image; diff --git a/web/src/components/icons/nucleo_icon_outlined/I12px_import.tsx b/web/src/components/icons/nucleo_icon_outlined/I12px_import.tsx index dd7d04ed7..711d7413e 100644 --- a/web/src/components/icons/nucleo_icon_outlined/I12px_import.tsx +++ b/web/src/components/icons/nucleo_icon_outlined/I12px_import.tsx @@ -1,26 +1,45 @@ import { iconProps } from './iconProps'; import React from 'react'; +function I12px_import(props: iconProps) { + const fill = props.fill || 'currentColor'; + const secondaryfill = props.secondaryfill || fill; + const strokewidth = props.strokewidth || 1; + const width = props.width || '1em'; + const height = props.height || '1em'; + const title = props.title || '12px import'; + return ( + + {title} + + + + + + + ); +} -function import(props: iconProps) { - const fill = props.fill || 'currentColor'; - const secondaryfill = props.secondaryfill || fill; - const strokewidth = props.strokewidth || 1; - const width = props.width || '1em'; - const height = props.height || '1em'; - const title = props.title || "12px import"; - - return ( - - {title} - - - - - - - ); -}; - -export default import; \ No newline at end of file +export default I12px_import; diff --git a/web/src/components/icons/nucleo_icon_outlined/iconProps.ts b/web/src/components/icons/nucleo_icon_outlined/iconProps.ts new file mode 100644 index 000000000..d724e3910 --- /dev/null +++ b/web/src/components/icons/nucleo_icon_outlined/iconProps.ts @@ -0,0 +1,8 @@ +export type iconProps = { + fill?: string; + secondaryfill?: string; + strokewidth?: number; + width?: string; + height?: string; + title?: string; +}; diff --git a/web/src/components/icons/nucleo_icon_outlined/iconProps.tsx b/web/src/components/icons/nucleo_icon_outlined/iconProps.tsx new file mode 100644 index 000000000..d724e3910 --- /dev/null +++ b/web/src/components/icons/nucleo_icon_outlined/iconProps.tsx @@ -0,0 +1,8 @@ +export type iconProps = { + fill?: string; + secondaryfill?: string; + strokewidth?: number; + width?: string; + height?: string; + title?: string; +};