import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><path d="M512 44c258.472 0 468 209.528 468 468S770.472 980 512 980 44 770.472 44 512 253.528 44 512 44z m0 72c-218.704 0-396 177.296-396 396s177.296 396 396 396 396-177.296 396-396S730.704 116 512 116z m-31.12 149.92a44 44 0 0 1 62.24 0l214.96 214.96a44 44 0 0 1 0 62.24L543.12 758.08a44 44 0 0 1-62.24 0L265.92 543.12a44 44 0 0 1 0-62.24zM512 336.64l-175.36 175.36L512 687.36 687.376 512l-175.36-175.36z"></path></svg>
  );
}