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

export default function OmniFocus(props) {
  return (
    <Icon {...props}>
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M5.5 0A5.5 5.5 0 0 0 0 5.5v13A5.5 5.5 0 0 0 5.5 24h13a5.5 5.5 0 0 0 5.5-5.5v-13A5.5 5.5 0 0 0 18.5 0h-13ZM9 13.8 16.8 6s.96-.96 2.4 0 1.4 2 1.2 2.4L10.2 19.2c-.2.2-.84.48-1.8 0-.96-.48-3.6-3.4-4.8-4.8-.82-.96-.48-1.32 0-1.8l1.2-1.2c.2-.2.72-.48 1.2 0l2.4 2.4H9Z"
      />
    </Icon>
  );
}