Uniformize folder structure (#693)
* Uniformize folder structure * Fix icons * Fix icons * Fix tests * Fix tests
This commit is contained in:
10
front/src/modules/ui/icon/components/IconAddressBook.tsx
Normal file
10
front/src/modules/ui/icon/components/IconAddressBook.tsx
Normal file
@ -0,0 +1,10 @@
|
||||
import { TablerIconsProps } from '@tabler/icons-react';
|
||||
|
||||
import { ReactComponent as IconAddressBookRaw } from '../assets/address-book.svg';
|
||||
|
||||
export function IconAddressBook(props: TablerIconsProps): JSX.Element {
|
||||
const size = props.size ?? 24;
|
||||
const stroke = props.stroke ?? 2;
|
||||
|
||||
return <IconAddressBookRaw height={size} width={size} strokeWidth={stroke} />;
|
||||
}
|
||||
Reference in New Issue
Block a user