import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M511.296 826.552c-150.24 0-272.472-109.264-272.472-243.576V262.28l20.848-4.48 245.44-52.84 5.536-1.192 5.536 1.184 246.704 52.832 20.88 4.48v320.712c0 134.304-122.24 243.576-272.48 243.576z" fill="#60C9B4"></path><path d="M510.424 122.472l-339.416 72.96V608.8c0 165.616 152.352 299.872 340.288 299.872s340.288-134.256 340.288-299.872V195.432l-341.16-72.96m0-72.984c5.12 0 10.24 0.536 15.264 1.608l341.16 72.96a72.984 72.984 0 0 1 57.72 71.376V608.8c0 205.592-185.392 372.856-413.272 372.856S98.024 814.4 98.024 608.8V195.432c0-34.4 24.016-64.128 57.648-71.36l339.416-72.96a72.992 72.992 0 0 1 15.336-1.624z" fill="#333333"></path><path d="M464.448 565.792l190.944-190.944a36.488 36.488 0 0 1 51.6 51.608L516.064 617.4a36.488 36.488 0 0 1-51.608-51.6v-0.008z" fill="#333333"></path><path d="M412.84 462.584l103.216 103.208a36.488 36.488 0 1 1-51.608 51.608L361.232 514.184a36.488 36.488 0 0 1 51.608-51.6z" fill="#333333"></path></svg>
  );
}