LOCKING盒子版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 3 години
1234567891011121314151617
  1. # svg图标
  2. ```jsx
  3. import React from 'react';
  4. import SvgIcon from '@/components/SvgIcon';
  5. export default () => (
  6. <>
  7. <SvgIcon xlinkHref="usercenter" />
  8. <SvgIcon xlinkHref="recycle" />
  9. <SvgIcon xlinkHref="monitor" />
  10. <SvgIcon xlinkHref="usercenter" color="#ff0000" size={40} style={{ color: '#7850FF' }} />
  11. <SvgIcon xlinkHref="recycle" size={40} style={{ color: '#7850FF' }} />
  12. <SvgIcon xlinkHref="monitor" size={40} style={{ color: '#7850FF' }} />
  13. </>
  14. )
  15. ```