diff --git a/packages/frontend/src/components/shared/CustomIcon/LogoutIcon.tsx b/packages/frontend/src/components/shared/CustomIcon/LogoutIcon.tsx new file mode 100644 index 00000000..ec3ff102 --- /dev/null +++ b/packages/frontend/src/components/shared/CustomIcon/LogoutIcon.tsx @@ -0,0 +1,21 @@ +import React from 'react'; +import { CustomIcon, CustomIconProps } from './CustomIcon'; + +export const LogoutIcon: React.FC = (props) => { + return ( + + + + ); +}; diff --git a/packages/frontend/src/components/shared/CustomIcon/index.ts b/packages/frontend/src/components/shared/CustomIcon/index.ts index 6b58743e..dd5092b5 100644 --- a/packages/frontend/src/components/shared/CustomIcon/index.ts +++ b/packages/frontend/src/components/shared/CustomIcon/index.ts @@ -49,6 +49,7 @@ export * from './LoaderIcon'; export * from './MinusCircleIcon'; export * from './CopyIcon'; export * from './MenuIcon'; +export * from './LogoutIcon'; // Templates export * from './templates';