|
1234567891011121314151617 |
- # svg图标
-
- ```jsx
- 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' }} />
- </>
- )
- ```
|