fix(SW-3691): Setup one prettier config for whole repo * Setup prettierrc in root and remove other configs Approved-by: Joakim Jäderberg Approved-by: Linus Flood
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
import type { NucleoIconProps } from "../../icon"
|
|
import { getNucleoIconProps } from "../utils"
|
|
|
|
function UserPolice2(props: NucleoIconProps) {
|
|
const { fill, strokeWidth, ...iconProps } = getNucleoIconProps(props)
|
|
|
|
return (
|
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...iconProps}>
|
|
<g
|
|
fill={fill}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
transform="translate(0.25 0.25)"
|
|
>
|
|
<path
|
|
d="m4,22.429l3.549-1.014c.859-.245,1.451-1.03,1.451-1.923v-1.239"
|
|
fill="none"
|
|
stroke={fill}
|
|
strokeWidth={strokeWidth}
|
|
/>
|
|
<path
|
|
d="m20,22.429l-3.549-1.014c-.859-.245-1.451-1.03-1.451-1.923v-1.239"
|
|
fill="none"
|
|
stroke={fill}
|
|
strokeWidth={strokeWidth}
|
|
/>
|
|
<path
|
|
d="m18.473,8.408c.091.509.124,1.038.09,1.578l-.189,3.025c-.21,3.366-3.002,5.988-6.374,5.988h0c-3.373,0-6.164-2.622-6.374-5.988l-.189-3.025c-.034-.541-.001-1.069.09-1.579"
|
|
fill="none"
|
|
stroke={fill}
|
|
strokeWidth={strokeWidth}
|
|
/>
|
|
<path
|
|
d="m12,12c-6.406,0-6.576-4-6.576-4h13.153s-.17,4-6.576,4Z"
|
|
fill="none"
|
|
stroke={fill}
|
|
strokeWidth={strokeWidth}
|
|
/>
|
|
<path
|
|
d="m18.576,8l1.495-3.109c.238-.494.039-1.098-.456-1.334-2.349-1.12-4.885-1.893-7.616-2.307-2.73.414-5.267,1.187-7.616,2.307-.495.236-.693.84-.456,1.334l1.495,3.109"
|
|
fill="none"
|
|
stroke={fill}
|
|
strokeWidth={strokeWidth}
|
|
/>
|
|
<circle cx="12" cy="4.75" fill={fill} r="1.5" strokeWidth="0" />
|
|
</g>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default UserPolice2
|