mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-28 14:08:27 +00:00
12 lines
528 B
TypeScript
12 lines
528 B
TypeScript
import { SVGIcon, IconProps } from '@alilc/lowcode-utils';
|
|
|
|
export function IconCond(props: IconProps) {
|
|
return (
|
|
<SVGIcon viewBox="0 0 1024 1024" {...props}>
|
|
<path d="M479.552 276.544l296.896 2.752v75.712L960 249.024l-183.552-106.048v92.48h-271.36l-46.656-2.752-190.784 203.648 30.976 30.976 180.928-190.784z m296.896 484.928l-253.056-2.816-262.976-263.04H64v43.904h175.296l262.912 262.976 274.176 2.816v75.712L960 774.976l-183.616-105.984 0.064 92.48z" />
|
|
</SVGIcon>
|
|
);
|
|
}
|
|
|
|
IconCond.displayName = 'IconCond';
|