diff --git a/packages/svg/src/icons/AddIcon.tsx b/packages/svg/src/icons/AddIcon.tsx index 183ebfc9..26c3ddd4 100644 --- a/packages/svg/src/icons/AddIcon.tsx +++ b/packages/svg/src/icons/AddIcon.tsx @@ -1,13 +1,13 @@ -import { FC } from "react"; -import { IconProps } from "./types"; +import { FC } from 'react'; +import { IconProps } from './types'; export const AddIcon: FC = ({ width, height, ...props }) => { - return ( - - - - - ) -} + return ( + + + + + ); +}; -export default AddIcon \ No newline at end of file +export default AddIcon; diff --git a/packages/svg/src/icons/AddIconCircleBorder.tsx b/packages/svg/src/icons/AddIconCircleBorder.tsx index c08f6123..2a988fbd 100644 --- a/packages/svg/src/icons/AddIconCircleBorder.tsx +++ b/packages/svg/src/icons/AddIconCircleBorder.tsx @@ -1,13 +1,13 @@ -import { FC } from "react" -import { IconProps } from "./types" +import { FC } from 'react'; +import { IconProps } from './types'; export const AddIconCircleBordered: FC = ({ width, height, color, ...props }) => { - return ( - - - - - ) -} + return ( + + + + + ); +}; -export default AddIconCircleBordered \ No newline at end of file +export default AddIconCircleBordered; diff --git a/packages/svg/src/icons/BellIcon.tsx b/packages/svg/src/icons/BellIcon.tsx index 3381ef5b..b9a11d13 100644 --- a/packages/svg/src/icons/BellIcon.tsx +++ b/packages/svg/src/icons/BellIcon.tsx @@ -1,19 +1,18 @@ -import { FC } from "react" -import { IconProps } from "./types" +import { FC } from 'react'; +import { IconProps } from './types'; export const BellIcon: FC = ({ width, height, color, ...props }) => { - return ( - - - + return ( + + + + ); +}; - ) -} - -export default BellIcon \ No newline at end of file +export default BellIcon; diff --git a/packages/svg/src/icons/ChatIcon.tsx b/packages/svg/src/icons/ChatIcon.tsx index dd1e0d4a..7b4280f5 100644 --- a/packages/svg/src/icons/ChatIcon.tsx +++ b/packages/svg/src/icons/ChatIcon.tsx @@ -1,18 +1,18 @@ -import { FC } from "react" -import { IconProps } from "./types" +import { FC } from 'react'; +import { IconProps } from './types'; export const ChatIcon: FC = ({ width, height, color, ...props }) => { - return ( - - - - ) -} + return ( + + + + ); +}; -export default ChatIcon \ No newline at end of file +export default ChatIcon; diff --git a/packages/svg/src/icons/Circle/OutlinedCircleIcon.tsx b/packages/svg/src/icons/Circle/OutlinedCircleIcon.tsx index 2dc2a643..dcd93e03 100644 --- a/packages/svg/src/icons/Circle/OutlinedCircleIcon.tsx +++ b/packages/svg/src/icons/Circle/OutlinedCircleIcon.tsx @@ -1,27 +1,39 @@ -import { FC } from "react"; -import { IconProps } from "../types"; -import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_STROKE, DEFAULT_STROKE_WIDTH, DEFAULT_WIDTH } from "../../constants/constants"; +import { FC } from 'react'; +import { IconProps } from '../types'; +import { + DEFAULT_FILL_NONE, + DEFAULT_HEIGHT, + DEFAULT_STROKE, + DEFAULT_STROKE_WIDTH, + DEFAULT_WIDTH +} from '../../constants/constants'; export const OutlinedCircleIcon: FC = ({ - width = DEFAULT_WIDTH, - height = DEFAULT_HEIGHT, - fill = DEFAULT_FILL_NONE, - stroke = DEFAULT_STROKE, - strokeWidth = DEFAULT_STROKE_WIDTH, - ...props + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL_NONE, + stroke = DEFAULT_STROKE, + strokeWidth = DEFAULT_STROKE_WIDTH, + ...props }) => { - return ( - - - - ); -} + return ( + + + + ); +}; -export default OutlinedCircleIcon +export default OutlinedCircleIcon; diff --git a/packages/svg/src/icons/ConfigurationIcon.tsx b/packages/svg/src/icons/ConfigurationIcon.tsx index 860902d2..b15fb7ef 100644 --- a/packages/svg/src/icons/ConfigurationIcon.tsx +++ b/packages/svg/src/icons/ConfigurationIcon.tsx @@ -1,19 +1,19 @@ -import { FC } from "react" -import { IconProps } from "./types" +import { FC } from 'react'; +import { IconProps } from './types'; export const ConfigurationIcon: FC = ({ width, height, color, ...props }) => { - return ( - - - - - ) -} + return ( + + + + + ); +}; -export default ConfigurationIcon \ No newline at end of file +export default ConfigurationIcon; diff --git a/packages/svg/src/icons/CredentialIcon.tsx b/packages/svg/src/icons/CredentialIcon.tsx index bb630a21..986640eb 100644 --- a/packages/svg/src/icons/CredentialIcon.tsx +++ b/packages/svg/src/icons/CredentialIcon.tsx @@ -1,18 +1,18 @@ -import { FC } from "react" -import { IconProps } from "./types" +import { FC } from 'react'; +import { IconProps } from './types'; export const CredentialIcon: FC = ({ width, height, color, ...props }) => { - return ( - - - - ) -} + return ( + + + + ); +}; -export default CredentialIcon \ No newline at end of file +export default CredentialIcon; diff --git a/packages/svg/src/icons/DashboardIcon.tsx b/packages/svg/src/icons/DashboardIcon.tsx index fe1ab3c2..3389e719 100644 --- a/packages/svg/src/icons/DashboardIcon.tsx +++ b/packages/svg/src/icons/DashboardIcon.tsx @@ -1,21 +1,21 @@ -import { FC } from "react" -import { IconProps } from "./types" +import { FC } from 'react'; +import { IconProps } from './types'; export const DashboardIcon: FC = ({ width, height, color, ...props }) => { - return ( - - - - - - - ) -} + return ( + + + + + + + ); +}; -export default DashboardIcon \ No newline at end of file +export default DashboardIcon; diff --git a/packages/svg/src/icons/index.ts b/packages/svg/src/icons/index.ts index 40a39440..f191fb77 100644 --- a/packages/svg/src/icons/index.ts +++ b/packages/svg/src/icons/index.ts @@ -1,32 +1,32 @@ -export * from "./Application" -export * from "./Bus" -export * from "./Circle" -export { default as AddIcon } from "./AddIcon"; -export { default as AddIconCircleBorder } from "./AddIconCircleBorder"; -export { default as BellIcon } from "./BellIcon"; -export { default as ChatIcon } from "./ChatIcon"; -export { default as ConfigurationIcon } from "./ConfigurationIcon"; -export { default as CredentialIcon } from "./CredentialIcon"; -export { default as DashboardIcon } from "./DashboardIcon"; -export { default as CloneIcon } from "./CloneIcon"; -export { default as CloudSavedIcon } from "./CloudSavedIcon"; -export { default as CloudSavingIcon } from "./CloudSavingIcon"; -export { default as ComponentIcon } from "./ComponentIcon"; -export { default as CreateNewIcon } from "./CreateNewIcon"; -export { default as CopyLinkIcon } from "./CopyLinkIcon"; -export { default as DataObjectIcon } from "./DataObjectIcon"; -export { default as DeleteIcon } from "./DeleteIcon"; -export { default as DesignerBottomRightIcon } from "./DesignerBottomRightIcon"; -export { default as DoubleChevron } from "./DoubleChevron"; -export { default as DeployIcon } from "./DeployIcon"; -export { default as DetailIcon } from "./DetailIcon"; -export { default as DetailsIcon } from "./DetailsIcon"; -export { default as FavoriteIcon } from "./FavoriteIcon"; -export { default as FilterIcon } from "./FilterIcon"; -export { default as FullScreenIconExit } from "./FullScreenExitIcon"; -export { default as FullScreenIcon } from "./FullScreenIcon"; -export { default as Hierarchical } from "./Hierarchical"; -export { default as InsertChartIcon } from "./InsertChartIcon"; +export * from './Application'; +export * from './Bus'; +export * from './Circle'; +export { default as AddIcon } from './AddIcon'; +export { default as AddIconCircleBorder } from './AddIconCircleBorder'; +export { default as BellIcon } from './BellIcon'; +export { default as ChatIcon } from './ChatIcon'; +export { default as ConfigurationIcon } from './ConfigurationIcon'; +export { default as CredentialIcon } from './CredentialIcon'; +export { default as DashboardIcon } from './DashboardIcon'; +export { default as CloneIcon } from './CloneIcon'; +export { default as CloudSavedIcon } from './CloudSavedIcon'; +export { default as CloudSavingIcon } from './CloudSavingIcon'; +export { default as ComponentIcon } from './ComponentIcon'; +export { default as CreateNewIcon } from './CreateNewIcon'; +export { default as CopyLinkIcon } from './CopyLinkIcon'; +export { default as DataObjectIcon } from './DataObjectIcon'; +export { default as DeleteIcon } from './DeleteIcon'; +export { default as DesignerBottomRightIcon } from './DesignerBottomRightIcon'; +export { default as DoubleChevron } from './DoubleChevron'; +export { default as DeployIcon } from './DeployIcon'; +export { default as DetailIcon } from './DetailIcon'; +export { default as DetailsIcon } from './DetailsIcon'; +export { default as FavoriteIcon } from './FavoriteIcon'; +export { default as FilterIcon } from './FilterIcon'; +export { default as FullScreenIconExit } from './FullScreenExitIcon'; +export { default as FullScreenIcon } from './FullScreenIcon'; +export { default as Hierarchical } from './Hierarchical'; +export { default as InsertChartIcon } from './InsertChartIcon'; // export { default as MergeActionIcon } from "./MergeActionIcon"; export { default as Mesh } from './Mesh'; // export { default as ModifiedApplicationFileIcon } from "./ModifiedApplicationFileIcon";