LOCKING盒子版
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

486 B

svg图标

import React from 'react';
import SvgIcon from '@/components/SvgIcon';

export default () => (
  <>
    <SvgIcon xlinkHref="usercenter" />
    <SvgIcon xlinkHref="recycle" />
    <SvgIcon xlinkHref="monitor" />
    <SvgIcon xlinkHref="usercenter" color="#ff0000" size={40} style={{ color: '#7850FF' }} />
    <SvgIcon xlinkHref="recycle" size={40} style={{ color: '#7850FF' }} />
    <SvgIcon xlinkHref="monitor" size={40} style={{ color: '#7850FF' }} />
  </>
)