mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 23:37:04 +00:00
13 lines
362 B
TypeScript
13 lines
362 B
TypeScript
import { SVGIcon, IconProps } from '@ali/lowcode-utils';
|
|
|
|
export function IconRadioActive(props: IconProps) {
|
|
return (
|
|
<SVGIcon viewBox="0 0 1024 1024" {...props}>
|
|
<path d="M512 1024A512 512 0 1 1 512 0a512 512 0 0 1 0 1024z m0-256a256 256 0 1 0 0-512 256 256 0 0 0 0 512z" />
|
|
</SVGIcon>
|
|
);
|
|
}
|
|
|
|
IconRadioActive.displayName = 'IconRadioActive';
|
|
|