mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-04-19 20:08:05 +00:00
15 lines
458 B
JavaScript
15 lines
458 B
JavaScript
|
|
const React = require('react');
|
|
const IconBase = require('@ali/vu-icon-base');
|
|
|
|
function JustifyStartV(props) {
|
|
return (
|
|
<IconBase viewBox="0 0 21 18" {...props}>
|
|
<g fillRule="evenodd"><path opacity=".5" d="M0 0h21v1H0z"/><path d="M6 8h9v5H6z"/><path opacity=".4" d="M7 3h7v3H7z"/><path d="M7 3v3h7V3H7zM6 2h9v5H6V2z"/></g>
|
|
</IconBase>
|
|
);
|
|
}
|
|
JustifyStartV.displayName = 'JustifyStartV';
|
|
|
|
module.exports = JustifyStartV;
|