96c41563cf
Fix the imports Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Mael FOSSO <fosso.mael.elvis@gmail.com>
11 lines
356 B
TypeScript
11 lines
356 B
TypeScript
import { TablerIconsProps } from '@/ui/icon';
|
|
|
|
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} />;
|
|
}
|