-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathDocsIcons.js
31 lines (28 loc) · 1.18 KB
/
DocsIcons.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React from 'react'
import IconsImg from 'src/assets/images/icons.webp'
const DocsIcons = () => (
<div className="bg-warning bg-opacity-10 border border-2 border-warning rounded mb-4">
<div className="row d-flex align-items-center p-3 px-xl-4 flex-xl-nowrap">
<div className="col-xl-auto col-12 d-none d-xl-block p-0">
<img className="img-fluid" src={IconsImg} width="160px" height="160px" alt="CoreUI Icons" />
</div>
<div className="col-md col-12 px-lg-4">
CoreUI Icons package is delivered with more than 1500 icons in multiple formats SVG, PNG,
and Webfonts. CoreUI Icons are beautifully crafted symbols for common actions and items. You
can use them in your digital products for web or mobile app. For more information please
visit our documentation.
</div>
<div className="col-md-auto col-12 mt-3 mt-lg-0">
<a
className="btn btn-warning text-nowrap text-white"
href="https://coreui.io/react/docs/components/icon/"
target="_blank"
rel="noopener noreferrer"
>
Explore Documentation
</a>
</div>
</div>
</div>
)
export default DocsIcons