Files
spacedrive/interface/app/$libraryId/Layout/Sidebar/SidebarLayout/Icon.tsx
Utku 7e5f7c0539 Make eslint happy (#2198)
* eslint maxing

* @sd/ui too
2024-03-12 20:41:41 +00:00

6 lines
170 B
TypeScript

import clsx from 'clsx';
export default ({ component: Icon, ...props }: any) => (
<Icon weight="bold" {...props} className={clsx('mr-2 size-4', props.className)} />
);