aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/at.js
blob: 6fdba17ba488ab683ec541d0ca7bbf837072e364 (plain)
1
2
3
4
5
import * as React from "react";

const IconAt = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-at" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><circle cx={12} cy={12} r={4} /><path d="M16 12v1.5a2.5 2.5 0 0 0 5 0v-1.5a9 9 0 1 0 -5.5 8.28" /></svg>;

export default IconAt;