import m from 'mithril'
import { SVGAttributes } from '../../svg'

const SquareFull: m.Component<SVGAttributes> = { view: ({ attrs }) => m("svg", {"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 512 512", ...attrs }, m("path", {"d":"M512 512H0V0h512v512z"}, )) }
export default SquareFull
