aboutsummaryrefslogtreecommitdiff
path: root/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/stopped.jsx
blob: 05cb40c77500675f21b10974088f5a5c74b1bfc5 (plain)
1
2
3
4
5
6
7
8
9
import Icon from "../icon.jsx";

export default function Stopped(props) {
  return (
    <Icon {...props}>
      <path d="M6 6h12v12H6z" />
    </Icon>
  );
}