aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/crown-off.js
blob: 52cddf666958aa2ead7eaffd7629c52fcb680eae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as React from "react";

function IconCrownOff({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg className="icon icon-tabler icon-tabler-crown-off" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M18 18h-13l-1.865 -9.327a0.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a0.25 .25 0 0 1 .401 .244l-1.363 6.818" /><line x1={3} y1={3} x2={21} y2={21} /></svg>;
}

export default IconCrownOff;