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

export default function Close(props) {
  return (
    <Icon {...props}>
      <path d="M24 2.4L21.6 0L12 9.6L2.4 0L0 2.4L9.6 12L0 21.6L2.4 24L12 14.4L21.6 24L24 21.6L14.4 12L24 2.4Z" />
    </Icon>
  );
}