aboutsummaryrefslogtreecommitdiff
path: root/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/royal-tsx.jsx
blob: 32b051f5a0dfaec5ee8ecd9a5d06bca1a38a42ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Icon from "../icon.jsx";

export default function RoyalTSX(props) {
  return (
    <Icon {...props}>
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24ZM11.9671 6.84375L7.42146 15.973L14.4294 11.5032L11.9671 6.84375ZM3.02734 8.62415L5.86816 16.1625L8.29271 11.8819L3.02734 8.62415ZM17.8386 17.1474H8.29271L20.566 8.88941L17.8386 17.1474Z"
      />
    </Icon>
  );
}