import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 32c265.096 0 480 214.904 480 480s-214.904 480-480 480S32 777.096 32 512 246.904 32 512 32z m0 72c-225.336 0-408 182.664-408 408s182.664 408 408 408 408-182.664 408-408-182.664-408-408-408z"></path><path d="M586.008 282c59.544 60.72 95.992 142.304 95.992 232s-36.448 171.28-95.992 232l-48.008-45.792c47.28-48.984 76.152-114.376 76.152-186.208s-28.88-137.224-76.152-186.208l48.008-45.792z m-86.784 80c39.016 40.208 62.776 93.52 62.776 152 0 58.48-23.76 111.792-62.776 152l-49.224-45.88c26.48-28.424 42.504-65.52 42.504-106.12 0-40.592-16.024-77.696-42.504-106.12l49.224-45.88z m-80.528 76c17.064 19.624 27.304 44.688 27.304 72 0 27.312-10.24 52.376-27.304 72l-76.696-72 76.696-72z"></path></svg>
  );
}