Explore all the fonts.
A completely free vector line-icon font, explore all icons here
import React from 'react';
const Dripicons = () => {
return <i className="dripicons dripicons-[icon-name]" />
}
export default Dripicons;
Beautifully crafted icons for common actions, view complete set here
import React from 'react';
const MaterialIcons = () => {
return (
<>
<i className="material-icons">{Icon_Name}</i> // Filled
<i className="material-icons-outlined">{Icon_Name}</i> // Outlined
<i className="material-icons-round">{Icon_Name}</i> // Round
<i className="material-icons-sharp">{Icon_Name}</i> // Sharp
<i className="material-icons-two-tone">{Icon_Name}</i>
</>
)
}
export default MaterialIcons;
Simply beautiful open source icons, view complete set here
import React from 'react';
import { Camera } from "react-feather";
const FeatherIcons = () => {
return (
<>
<Camera /> // Without props
<Camera color="red" size={48} /> // With props
</>
)
}
export default FeatherIcons;
The complete set of icons, explore all icons here
import React from 'react';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
const FontAwesomeIcons = () => {
return <FontAwesomeIcon icon="icon_name" />
}
export default FontAwesomeIcons;
320+ pixel-perfect, hand-crafted icons, view complete set here
import React from 'react';
const RemixIcons = () => {
return <i className="ti-[icon_name]" />
}
export default RemixIcons;
320+ pixel-perfect, hand-crafted icons, view complete set here
import React from 'react';
const LineAwesomeIcons = () => {
return <i className="las la-[icon_name]" />
}
export default LineAwesomeIcons;
320+ pixel-perfect, hand-crafted icons, view complete set here
import React from 'react';
const FlagIcons = () => {
return <i className="flag-icon flag-icon-in" />
}
export default FlagIcons;
320+ pixel-perfect, hand-crafted icons, view complete set here
import React from 'react';
const Emoji = () => {
return <i className="em em-[icon_name]" />
}
export default Emoji;
Bootstrap Icons are designed to work with Bootstrap components, from form controls to navigation. Bootstrap Icons are SVGs, so they scale quickly and easily and can be styled with CSS.view complete set here
import React from 'react';
const BootstrapIcons = () => {
return <i className="bi bi-[icon_name]" />
}
export default BootstrapIcons;