LOCKING盒子版
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

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' }} />
  </>
)