react-icons/fi APIs
- FiArrowLeft
- FiInfo
- FiLogIn
- FiCheckCircle
- FiUpload
- FiClock
- FiX
- FiPlus
- FiArrowRight
- FiSearch
- FiXCircle
- FiUser
- FiChevronRight
- FiAlertCircle
- FiTrash
- FiSettings
- FiExternalLink
- FiChevronDown
- FiChevronLeft
- FiPower
- FiMenu
- FiGithub
- FiGrid
- FiChevronUp
- FiCheck
- FiCopy
- FiMail
- FiLock
- FiCamera
- FiHome
- FiLogOut
- FiThumbsUp
- FiWifi
- FiArrowUp
- FiDownload
- FiEdit2
- FiMoon
- FiCode
- FiSave
- FiPlusCircle
- FiTrash2
- FiBell
- FiMonitor
- FiMessageCircle
- FiCircle
- FiArrowUpRight
- FiAlertTriangle
- FiBarChart2
- FiThumbsDown
- FiPlayCircle
- FiZap
- FiCheckSquare
- FiEdit3
- FiPlusSquare
- FiPackage
- FiUsers
- FiMinus
- FiEdit
- FiMoreVertical
- FiSun
- FiActivity
- FiLayout
- FiAlignLeft
- FiArrowRightCircle
- FiSliders
- FiHeart
- FiBluetooth
- FiSmartphone
- FiNavigation
- FiHelpCircle
- FiXOctagon
- FiZoomIn
- FiZoomOut
- FiWifiOff
- FiFeather
- FiCalendar
- FiPercent
- FiTriangle
- FiArchive
- FiBookOpen
- FiCrosshair
- FiLifeBuoy
- FiGitMerge
- FiRepeat
- FiServer
- FiStar
- FiUserMinus
- FiHexagon
- FiTwitter
- FiFileText
- FiImage
- FiLoader
- FiBook
- FiDatabase
- FiMinusCircle
- FiRefreshCcw
- FiMaximize2
- FiSquare
- FiFilm
- FiUserCheck
- FiFrown
- FiTool
- FiFolder
- FiTruck
- FiArrowDown
- FiType
- FiVideo
- FiPlay
- FiRadio
- FiVolume2
- FiBox
- FiDollarSign
- FiCreditCard
- FiHardDrive
- FiEye
- FiAperture
- FiTag
- FiFastForward
- FiLayers
- FiMapPin
- FiMessageSquare
- FiRss
- FiTv
- FiCpu
- FiGitBranch
- FiClipboard
- FiFilePlus
- FiFile
- FiRefreshCw
- FiPaperclip
- FiHash
- FiLink2
Other Related APIs
react-icons/fi#FiPlusSquare TypeScript Examples
The following examples show how to use
react-icons/fi#FiPlusSquare.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.tsx From rocketseat-gostack-11-desafios with MIT License | 6 votes |
Header: React.FC<IHeaderProps> = ({ openModal }) => (
<Container>
<header>
<img src={Logo} alt="GoRestaurant" />
<nav>
<div>
<button
type="button"
onClick={() => {
openModal();
}}
>
<div className="text">Novo Prato</div>
<div className="icon">
<FiPlusSquare size={24} />
</div>
</button>
</div>
</nav>
</header>
</Container>
)
Example #2
Source File: index.tsx From ecoleta with MIT License | 6 votes |
Header: React.FC = () => {
const { title } = useContext(ThemeContext);
const { toggleTheme } = useTheme();
return (
<Container>
<header>
{title === 'light' ? (
<img src={logo} alt="Ecoleta" />
) : (
<img src={logoDark} alt="Ecoleta" />
)}
<Toggle
checked={title === 'dark'}
onChange={toggleTheme}
className="toggle"
icons={{
checked: <FaMoon color="yellow" size={12} />,
unchecked: <FaSun color="yellow" size={12} />,
}}
/>
<nav>
<div>
<Link to="/create-point">
<strong className="text">Cadastrar novo ponto</strong>
<div className="icon">
<FiPlusSquare size={24} />
</div>
</Link>
</div>
</nav>
</header>
</Container>
);
}