Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Matheus <matheus_benini@hotmail.com> Co-authored-by: bosiraphael <raphael.bosi@gmail.com>
13 lines
411 B
TypeScript
13 lines
411 B
TypeScript
import { TablerIconsProps } from '@/ui/icon';
|
|
|
|
import { ReactComponent as IconAddressBookRaw } from '../assets/address-book.svg';
|
|
|
|
type IconAddressBookProps = TablerIconsProps;
|
|
|
|
export const IconAddressBook = (props: IconAddressBookProps): JSX.Element => {
|
|
const size = props.size ?? 24;
|
|
const stroke = props.stroke ?? 2;
|
|
|
|
return <IconAddressBookRaw height={size} width={size} strokeWidth={stroke} />;
|
|
};
|