From 9456b4aa7e3f7ed94577c6e9800c23ed96dd895f Mon Sep 17 00:00:00 2001 From: Nate Kelley Date: Tue, 18 Feb 2025 11:02:28 -0700 Subject: [PATCH] rename files --- .../icons/nucleo_icon_filled/export.tsx | 42 ++++++----- .../icons/nucleo_icon_filled/import.tsx | 42 ++++++----- .../design-file-import.tsx | 72 ++++++++++++------- .../icons/nucleo_icon_outlined/export.tsx | 61 ++++++++++------ .../icons/nucleo_icon_outlined/import.tsx | 61 ++++++++++------ 5 files changed, 175 insertions(+), 103 deletions(-) diff --git a/web/src/components/icons/nucleo_icon_filled/export.tsx b/web/src/components/icons/nucleo_icon_filled/export.tsx index 278307b3f..b0eace541 100644 --- a/web/src/components/icons/nucleo_icon_filled/export.tsx +++ b/web/src/components/icons/nucleo_icon_filled/export.tsx @@ -2,23 +2,29 @@ import React from 'react'; import { iconProps } from './iconProps'; -function export(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 || "export"; +function exportIcon(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 || 'export'; - return ( - - {title} - - - - - - ); -}; + return ( + + {title} + + + + + + ); +} -export default export; \ No newline at end of file +export default exportIcon; diff --git a/web/src/components/icons/nucleo_icon_filled/import.tsx b/web/src/components/icons/nucleo_icon_filled/import.tsx index af558f021..97dcde981 100644 --- a/web/src/components/icons/nucleo_icon_filled/import.tsx +++ b/web/src/components/icons/nucleo_icon_filled/import.tsx @@ -2,23 +2,29 @@ import React from 'react'; import { iconProps } from './iconProps'; -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 || "import"; +function importIcon(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 || 'import'; - return ( - - {title} - - - - - - ); -}; + return ( + + {title} + + + + + + ); +} -export default import; \ No newline at end of file +export default importIcon; diff --git a/web/src/components/icons/nucleo_icon_outlined/design-file-import.tsx b/web/src/components/icons/nucleo_icon_outlined/design-file-import.tsx index 0280ccfae..32425c534 100644 --- a/web/src/components/icons/nucleo_icon_outlined/design-file-import.tsx +++ b/web/src/components/icons/nucleo_icon_outlined/design-file-import.tsx @@ -1,29 +1,51 @@ import React from 'react'; - - - -function designFileImport(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 || "18px design file import"; import { iconProps } from './iconProps'; - return ( - - {title} - - - - - - - - - - ); -}; +function designFileImport(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 || '18px design file import'; -export default designFileImport; \ No newline at end of file + return ( + + {title} + + + + + + + + + + ); +} + +export default designFileImport; diff --git a/web/src/components/icons/nucleo_icon_outlined/export.tsx b/web/src/components/icons/nucleo_icon_outlined/export.tsx index e747b843e..4620f4b26 100644 --- a/web/src/components/icons/nucleo_icon_outlined/export.tsx +++ b/web/src/components/icons/nucleo_icon_outlined/export.tsx @@ -1,26 +1,45 @@ import React from 'react'; import { iconProps } from './iconProps'; +function exportIcon(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 || '18px export'; + return ( + + {title} + + + + + + + ); +} -function export(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 || "18px export"; - - return ( - - {title} - - - - - - - ); -}; - -export default export; \ No newline at end of file +export default exportIcon; diff --git a/web/src/components/icons/nucleo_icon_outlined/import.tsx b/web/src/components/icons/nucleo_icon_outlined/import.tsx index 0453bf2bc..23208b40b 100644 --- a/web/src/components/icons/nucleo_icon_outlined/import.tsx +++ b/web/src/components/icons/nucleo_icon_outlined/import.tsx @@ -1,26 +1,45 @@ import { iconProps } from './iconProps'; import React from 'react'; +function importIcon(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 || '18px 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 || "18px import"; - - return ( - - {title} - - - - - - - ); -}; - -export default import; \ No newline at end of file +export default importIcon;