import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M872 940H152a68 68 0 0 1-68-68V152a68 68 0 0 1 68-68h720a68 68 0 0 1 68 68v720a68 68 0 0 1-68 68z m-4-72v-712h-712v712h712z" fill="#333333"></path><path d="M261.68 224h508.64c25.12 0 37.68 9.496 37.68 28.488v527.024c0 18.992-12.56 28.488-37.68 28.488H261.68c-25.12 0-37.68-9.496-37.68-28.488V252.488C224 233.496 236.56 224 261.68 224z" fill="#60C9B4"></path><path d="M472.08 360.56v359.72a36.016 36.016 0 0 0 72.032 0V360.56h123.792a36.28 36.28 0 0 0 0-72.552H348.28a36.28 36.28 0 0 0 0 72.56h123.792l0.008-0.008z" fill="#333333"></path></svg>
  );
}