civictechindex/CTI-website-frontend

View on GitHub
src/icons/CheckBoxOutlineBlankIcon.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import SvgIcon from '@material-ui/core/SvgIcon';

const CheckBoxOutlineBlankIcon = (props) => {
  return (
    <SvgIcon {...props}>
      <rect x='2.5' y='2.5' width='19' height='19' fill='#FEFEFE' stroke='#BCBCBC' />
    </SvgIcon>
  );
};

export default CheckBoxOutlineBlankIcon;