react-icons/fi APIs
- FiTrash2
- FiArrowLeft
- FiUsers
- FiLogIn
- FiPower
- FiX
- FiSun
- FiSearch
- FiPlus
- FiMail
- FiMoon
- FiEdit
- FiChevronRight
- FiShare2
- FiCheckCircle
- FiChevronLeft
- FiLink
- FiLogOut
- FiArrowRight
- FiMenu
- FiGlobe
- FiCheck
- FiSend
- FiFile
- FiInfo
- FiCopy
- FiDownload
- FiTrash
- FiExternalLink
- FiClock
- FiEye
- FiAlertTriangle
- FiShare
- FiChevronDown
- FiMap
- FiLock
- FiHome
- FiPackage
- FiTwitter
- FiGrid
- FiPlusCircle
- FiXCircle
- FiCrosshair
- FiUserPlus
- FiMusic
- FiCode
- FiBookOpen
- FiCodepen
- FiEyeOff
- FiFolderPlus
- FiCoffee
- FiImage
- FiUpload
- FiArchive
- FiCalendar
- FiUser
- FiWind
- FiRewind
- FiMinus
- FiBell
- FiChevronUp
- FiHeart
- FiStar
- FiHelpCircle
- FiFileText
- FiAlertOctagon
- FiTag
- FiTerminal
- FiArrowLeftCircle
- FiArrowRightCircle
- FiBook
- FiPhoneCall
- FiLink2
- FiGithub
- FiLinkedin
- FiYoutube
- FiMoreVertical
- FiPauseCircle
- FiPlayCircle
- FiFolder
- FiVideo
- FiLoader
- FiHardDrive
- FiUnlock
- FiPhone
- FiAtSign
- FiCircle
- FiPlay
- FiDownloadCloud
- FiMessageCircle
- FiBookmark
- FiAperture
- FiPhoneForwarded
- FiShuffle
- FiWatch
- FiCloud
- FiCloudDrizzle
- FiCloudRain
- FiCloudLightning
- FiCloudSnow
- FiShoppingCart
- FiFilter
- FiCornerUpLeft
- FiShoppingBag
- FiCornerDownRight
- FiEdit3
- FiMessageSquare
- FiInbox
- FiTool
- FiMinusCircle
react-icons/fi#FiShuffle JavaScript Examples
The following examples show how to use
react-icons/fi#FiShuffle.
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: BackgroundInfos.jsx From 4IZ268-2021-2022-ZS with MIT License | 6 votes |
![]() ![]() |
function BackgroundInfos({ background, getRandomPhoto }) {
return (
<div className='group pl-4 pb-3 pt-16 pr-28 opacity-70 hover:opacity-90 transition-opacity relative'>
<Tooltip
content="after:content-['Try_another_photo']"
position='right'
method={getRandomPhoto}
className='opacity-0 group-hover:opacity-100'>
<FiShuffle />
</Tooltip>
<p className='font-medium'>{background.location.name}</p>
<p className='opacity-80'>Photo by {background.user.name}</p>
</div>
)
}