UNPKG

@kiwicom/orbit-components

Version:

<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"

21 lines (19 loc) 1.12 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; import type { Props } from "./MusicalInstruments.js.flow"; export default function MusicalInstruments(props: Props) { const { color, size, customColor, className, dataTest } = props; return ( <OrbitIcon viewBox="0 0 24 24" size={size} color={color} customColor={customColor} className={className} dataTest={dataTest} > <path d="M21.799 7.948a1.002 1.002 0 0 1-.542 1.695l-4.74.16c.115.083.23.165.332.267l1.414 1.414a2.98 2.98 0 0 1 .879 2.121c0 .801-.312 1.554-.879 2.122l-1.414-1.415a1 1 0 0 0 0-1.414l-1.414-1.414a1 1 0 0 0-1.414 0l-5.657 5.657a1 1 0 0 0 0 1.414l1.414 1.415c.39.39 1.025.39 1.415 0l1.414 1.414a2.983 2.983 0 0 1-2.122.878 2.981 2.981 0 0 1-2.121-.878L6.95 19.97a2.978 2.978 0 0 1-.579-.836l-.835.836.707.707-2.829 1.414L2 20.677l1.414-2.83.708.708L14.261 8.416l.187-5.58a1.002 1.002 0 0 1 1.694-.544l5.657 5.656zm-11.313 9.9l1.414-1.414 3.536 3.537-1.415 1.414-3.535-3.537zm2.828-2.828l1.414-1.415 3.536 3.536-1.414 1.415-3.536-3.536z" /> </OrbitIcon> ); }