Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const Square = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Square(props, ref) {
return (
<Icon {...props} name="Square">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path d="M4 4H20V20H4V4Z" fill="currentColor" />
</svg>
</Icon>
)
})
Square.displayName = 'Square'
export default Square
|