mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 15:27:18 +00:00
12 lines
726 B
XML
12 lines
726 B
XML
import { SVGIcon, IconProps } from "@ali/lowcode-utils";
|
|
|
|
export function IconClear(props: IconProps) {
|
|
return (
|
|
<SVGIcon viewBox="0 0 1024 1024" {...props}>
|
|
<path d="M761.6 701.44a21.333333 21.333333 0 0 1 0 30.293333l-29.866667 29.866667a21.333333 21.333333 0 0 1-30.293333 0L512 572.16l-189.44 189.44a21.333333 21.333333 0 0 1-30.293333 0l-29.866667-29.866667a21.333333 21.333333 0 0 1 0-30.293333L451.84 512 262.4 322.56a21.333333 21.333333 0 0 1 0-30.293333l29.866667-29.866667a21.333333 21.333333 0 0 1 30.293333 0L512 451.84l189.44-189.44a21.333333 21.333333 0 0 1 30.293333 0l29.866667 29.866667a21.333333 21.333333 0 0 1 0 30.293333L572.16 512z" />
|
|
</SVGIcon>
|
|
);
|
|
}
|
|
|
|
IconClear.displayName = 'Clear';
|