Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 3x 3x | import Svg, { Circle, Path } from "react-native-svg";
import { IconProps } from "@repo/types/icons";
export const ChatbotIcon = ({
width = 40,
height = 41,
...props
}: IconProps) => (
<Svg width={width} height={height} viewBox="0 0 40 41" fill="none" {...props}>
<Path
fillRule="evenodd"
clipRule="evenodd"
d="M24.7709 1.72852C26.0047 1.72852 26.8915 2.85435 26.6409 4.05783C26.4289 5.14484 26.448 6.29024 26.6986 7.47431C27.3541 10.5218 29.8218 13.0063 32.8482 13.6663C34.0241 13.9186 35.1614 13.9187 36.2409 13.7246C37.436 13.4917 38.5542 14.3846 38.5542 15.6075V24.9442C38.5541 30.3015 34.2552 34.6301 28.9348 34.6301H26.0241C25.4072 34.6301 24.8482 34.9214 24.482 35.4066L21.5904 39.2693C20.3181 40.9774 18.2361 40.9774 16.9638 39.2693L14.0722 35.4066C13.7638 34.9796 13.0699 34.6301 12.5301 34.6301H9.63854C4.3181 34.6301 5.57397e-05 30.2821 0 24.9247V11.4339C5.64744e-05 6.07651 4.3181 1.72852 9.63854 1.72852H24.7709Z"
fill="#A1A3A9"
/>
<Circle cx="11.5663" cy="19.1984" r="1.93" fill="white" />
<Circle cx="19.2771" cy="19.1984" r="1.93" fill="white" />
<Circle cx="26.9879" cy="19.1984" r="1.93" fill="white" />
<Path
d="M34.6987 0.273438C37.6264 0.273438 39.9998 2.66329 39.9999 5.61135C39.9999 8.55945 37.6264 10.9496 34.6987 10.9496C31.7709 10.9496 29.3975 8.55945 29.3975 5.61135C29.3975 2.66329 31.7709 0.273438 34.6987 0.273438Z"
fill="#404653"
/>
</Svg>
);
|