import * as React from 'react';

const DefaultStyles = {
  width: '1em',
  height: '1em',
  verticalAlign: 'middle',
  fill: 'currentColor',
  overflow: 'hidden'
};

export default function Music(props = {}) {
  const styles = Object.assign({}, DefaultStyles, props.style);

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M977.904 42.4l0.944 0.968A35.928 35.928 0 0 1 992 71.2v650.96c0 2.464-0.248 4.88-0.72 7.2 1.704 82.08-74.816 157.216-178.744 171.824-110.384 15.52-209.872-43.144-222.224-131.008-12.344-87.864 67.12-171.664 177.504-187.176 56.88-8 110.864 3.704 151.528 28.944V270.584L434.96 346.92v463.592c0 2.48-0.24 4.888-0.72 7.224 1.696 82.064-74.824 157.2-178.744 171.8-110.376 15.52-209.872-43.136-222.216-131-12.352-87.872 67.12-171.672 177.496-187.184 56.88-8 110.872 3.704 151.536 28.944V159.552c0-8.832 3.176-16.92 8.456-23.184a35.936 35.936 0 0 1 25.344-17.168l550.824-86.808a35.952 35.952 0 0 1 30.968 10.016zM220.84 742.952c-73.728 10.36-121.848 61.104-115.616 105.48 6.24 44.368 66.48 79.88 140.208 69.52 73.736-10.36 121.856-61.104 115.616-105.48-6.24-44.368-66.48-79.88-140.208-69.52z m557.04-88.36c-73.736 10.36-121.856 61.104-115.616 105.472 6.24 44.376 66.48 79.888 140.208 69.528s121.848-61.104 115.616-105.48c-6.24-44.368-66.48-79.888-140.208-69.52z m141.464-544.656L434.96 186.264v87.464l484.384-76.336V109.928z"></path></svg>
  );
}