dappconnect-sdks/packages/icons/20/contact-book-icon.tsx

27 lines
2.1 KiB
TypeScript

import { Path, Svg } from 'react-native-svg'
import { useCurrentColor } from 'tamagui'
import type { SvgProps } from 'react-native-svg'
const SvgContactBookIcon = (props: SvgProps) => {
const { color: colorToken = 'currentColor', ...rest } = props
const color = useCurrentColor(colorToken)
return (
<Svg
width={20}
height={20}
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<Path
fillRule="evenodd"
clipRule="evenodd"
d="M16.65 7.772V12.228c0 .816 0 1.469-.043 1.995-.044.54-.137 1.006-.355 1.434a3.65 3.65 0 0 1-1.595 1.595c-.428.218-.893.31-1.434.355-.527.043-1.179.043-1.995.043H8.772c-.816 0-1.469 0-1.995-.043-.54-.044-1.006-.137-1.434-.355a3.65 3.65 0 0 1-1.595-1.595c-.218-.428-.31-.893-.355-1.434-.035-.432-.042-.95-.043-1.573H3a.65.65 0 1 1 0-1.3h.35v-2.7H3a.65.65 0 0 1 0-1.3h.35a20.8 20.8 0 0 1 .043-1.573c.044-.54.137-1.006.355-1.434a3.65 3.65 0 0 1 1.595-1.595c.428-.218.893-.31 1.434-.355.526-.043 1.179-.043 1.995-.043h2.456c.816 0 1.469 0 1.995.043.54.044 1.006.137 1.434.355a3.65 3.65 0 0 1 1.595 1.595c.218.428.31.893.355 1.434.043.526.043 1.179.043 1.995Zm-12 3.578v-2.7H5a.65.65 0 0 0 0-1.3h-.35a19.6 19.6 0 0 1 .039-1.467c.037-.46.108-.736.217-.95a2.35 2.35 0 0 1 1.027-1.027c.214-.109.49-.18.95-.217C7.35 3.65 7.949 3.65 8.8 3.65h2.4c.85 0 1.45 0 1.918.039.46.037.735.108.949.217a2.35 2.35 0 0 1 1.027 1.027c.109.214.18.49.217.95.039.467.039 1.066.039 1.917v4.4c0 .85 0 1.45-.039 1.918-.037.46-.108.735-.217.949a2.35 2.35 0 0 1-1.027 1.027c-.214.109-.49.18-.95.217-.467.038-1.066.039-1.917.039H8.8c-.85 0-1.45 0-1.917-.039-.46-.037-.736-.108-.95-.217a2.35 2.35 0 0 1-1.027-1.027c-.109-.214-.18-.49-.217-.95-.031-.38-.037-.848-.039-1.467H5a.65.65 0 1 0 0-1.3h-.35Zm1.7 1.9a2.9 2.9 0 0 1 2.9-2.9h1.5a2.9 2.9 0 0 1 2.9 2.9 1.4 1.4 0 0 1-1.4 1.4h-4.5a1.4 1.4 0 0 1-1.4-1.4Zm2.9-1.6a1.6 1.6 0 0 0-1.6 1.6.1.1 0 0 0 .1.1h4.5a.1.1 0 0 0 .1-.1 1.6 1.6 0 0 0-1.6-1.6h-1.5Zm-.1-4.15a.85.85 0 1 1 1.7 0 .85.85 0 0 1-1.7 0ZM10 5.35a2.15 2.15 0 1 0 0 4.3 2.15 2.15 0 0 0 0-4.3Z"
fill={color}
/>
</Svg>
)
}
export default SvgContactBookIcon