import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M248 272m8 0l472 0q8 0 8 8l0 56q0 8-8 8l-472 0q-8 0-8-8l0-56q0-8 8-8Z"></path><path d="M456 272m8 0l56 0q8 0 8 8l0 464q0 8-8 8l-56 0q-8 0-8-8l0-464q0-8 8-8Z"></path><path d="M584 560m8 0l176 0q8 0 8 8l0 32q0 8-8 8l-176 0q-8 0-8-8l0-32q0-8 8-8Z"></path><path d="M656 560m8 0l32 0q8 0 8 8l0 176q0 8-8 8l-32 0q-8 0-8-8l0-176q0-8 8-8Z"></path><path d="M832 32c88.368 0 160 71.632 160 160v640c0 88.368-71.632 160-160 160H192c-88.368 0-160-71.632-160-160V192C32 103.632 103.632 32 192 32h640z m0 72H192c-47.832 0-86.744 38.16-87.968 85.696L104 192v640c0 47.832 38.16 86.744 85.696 87.968L192 920h640c47.832 0 86.744-38.16 87.968-85.696L920 832V192c0-47.832-38.16-86.744-85.696-87.968L832 104z"></path></svg>
  );
}