import React, { memo } from 'react'; import { Progress } from 'zarm'; import styles from './index.less'; import { IXProgressConfig } from './schema'; import logo from 'editorAssets/15-进度.png'; const XProgress = memo((props: IXProgressConfig & { isTpl: boolean }) => { const { theme, size, shape, percent, strokeWidth, isTpl } = props; return ( <> {isTpl ? (
) : (
)} ); }); export default XProgress;