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

export default function Playing(props) {
  return (
    <Icon {...props}>
      <path d="M5.7 4h3.8c.5 0 .9.4.9.9v14.2c0 .5-.4.9-1 .9H5.8a1 1 0 01-.9-.9V4.9c0-.5.4-.9 1-.9zm8.8 0h3.8c.5 0 .9.4.9.9v14.2c0 .5-.4.9-1 .9h-3.7a1 1 0 01-.9-.9V4.9c0-.5.4-.9 1-.9z" />
    </Icon>
  );
}