We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parente3c5a2c commit95b3405Copy full SHA for 95b3405
README.md
@@ -7,6 +7,9 @@
7
[npm]:https://www.npmjs.com/package/@coreui/icons-react
8
[npm-download]:https://img.shields.io/npm/dm/@coreui/icons-react.svg?style=flat-square
9
10
+#####docs:
11
+https://coreui.io/react/docs/components/-Icon
12
+
13
#####install:
14
```bash
15
npm install @coreui/icons
@@ -15,8 +18,8 @@ npm install @coreui/icons-react
18
16
19
#####import:
17
20
```jsx
-import {CIcon,CIconRaw }from'@coreui/icons-react';
-import {cifAu }from'@coreui/icons';
21
+import {CIcon }from'@coreui/icons-react';
22
+import {cifAU }from'@coreui/icons';
23
```
24
or:
25
```scss
@@ -30,7 +33,6 @@ class CoreUIIcons extends Component {
30
33
...
31
34
render() {
32
35
return (
-<CIconRaw name='cifAu' size="2xl"/>
36
<CIcon name="cil-list" size="2xl"/>
37
)
38
}