Files
twenty/front/src/modules/ui/icon/components/IconAddressBook.tsx
T
2023-08-29 13:40:17 +02:00

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} />;
}