13 lines
764 B
TypeScript
13 lines
764 B
TypeScript
import React from 'react';
|
|
import Icon, { IconProps } from './Icon';
|
|
|
|
const CheckSquareOutline: React.FC<IconProps> = ({ width = '16px', height = '16px', className }) => {
|
|
return (
|
|
<Icon width={width} height={height} className={className} viewBox="0 0 448 512">
|
|
<path d="M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z" />
|
|
</Icon>
|
|
);
|
|
};
|
|
|
|
export default CheckSquareOutline;
|