index.tsx 223 B

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