import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M32 184m36 0l336 0q36 0 36 36l0 0q0 36-36 36l-336 0q-36 0-36-36l0 0q0-36 36-36Z"></path><path d="M620 184m36 0l280 0q36 0 36 36l0 0q0 36-36 36l-280 0q-36 0-36-36l0 0q0-36 36-36Z"></path><path d="M620 416m36 0l224 0q36 0 36 36l0 0q0 36-36 36l-224 0q-36 0-36-36l0 0q0-36 36-36Z"></path><path d="M268 188m0 36l0 536q0 36-36 36l0 0q-36 0-36-36l0-536q0-36 36-36l0 0q36 0 36 36Z"></path><path d="M601.543871 92.750238m-7.484821 35.213314l-161.339472 759.042538q-7.484821 35.213314-42.698135 27.728493l0 0q-35.213314-7.484821-27.728493-42.698135l161.339472-759.042538q7.484821-35.213314 42.698135-27.728493l0 0q35.213314 7.484821 27.728493 42.698135Z"></path><path d="M688 188m0 36l0 536q0 36-36 36l0 0q-36 0-36-36l0-536q0-36 36-36l0 0q36 0 36 36Z"></path></svg>
  );
}