blob: 13abc8f755d956887144af34bbfef5cdb050e27d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import Icon from "../icon.jsx";
export default function Ableton(props) {
return (
<Icon {...props}>
<path d="m11.084 2.681.62-1.07a1.393 1.393 0 1 1 2.415 1.391L8.153 13.33h4.315c1.399 0 2.182 1.643 1.575 2.783H1.39C.62 16.113 0 15.493 0 14.72c0-.772.62-1.391 1.391-1.391h3.547L9.48 5.46 8.061 2.999a1.395 1.395 0 0 1 2.416-1.392l.607 1.074ZM5.718 17.546l-1.338 2.32a1.393 1.393 0 1 1-2.415-1.391l.993-1.72c1.124-.348 2.038-.08 2.76.79Zm11.52-4.208h3.62c.772 0 1.391.619 1.391 1.39 0 .773-.62 1.392-1.391 1.392h-2.01l1.356 2.355a1.395 1.395 0 0 1-2.415 1.39c-2.286-3.963-4.002-6.929-5.141-8.905-1.166-2.01-.333-4.028.489-4.713.913 1.568 2.278 3.934 4.101 7.09Z" />
<path d="m16.693 9.093-5.081 8.801a1.016 1.016 0 0 0 .372 1.388l4.113 2.375c.486.28 1.108.114 1.388-.372l5.082-8.8a1.016 1.016 0 0 0-.372-1.388L18.08 8.72a1.016 1.016 0 0 0-1.388.372Zm-.587-.338a1.694 1.694 0 0 1 2.314-.62l4.113 2.375a1.694 1.694 0 0 1 .62 2.313l-5.08 8.8a1.694 1.694 0 0 1-2.314.62l-4.114-2.374a1.694 1.694 0 0 1-.62-2.314l5.081-8.8Zm-1.978 10.2a.678.678 0 1 1 1.173.679.678.678 0 0 1-1.173-.678Z" />
<path
fillOpacity=".75"
fillRule="evenodd"
clipRule="evenodd"
d="m16.693 9.093-5.081 8.8a1.016 1.016 0 0 0 .372 1.39l4.113 2.374c.486.28 1.108.114 1.388-.372l5.082-8.8a1.016 1.016 0 0 0-.372-1.389L18.08 8.721a1.016 1.016 0 0 0-1.388.372Zm-1.64 9.615a.678.678 0 1 0-.677 1.174.678.678 0 0 0 .677-1.174Z"
/>
</Icon>
);
}
|