index.tsx 217 B

1234567
  1. import { Image } from '@tarojs/components'
  2. import Icon from '@/images/svgs/icon-minus.svg'
  3. export default () => {
  4. return (
  5. <Image src={Icon} mode="widthFix" style={{width: '16px', height: '16px'}}></Image>
  6. )
  7. }