react-icons/fa APIs
- FaTwitter
- FaGithub
- FaSearch
- FaDiscord
- FaEye
- FaInstagram
- FaPlus
- FaFacebookF
- FaTrash
- FaGlobe
- FaUsers
- FaEdit
- FaListUl
- FaWhatsapp
- FaApple
- FaTimes
- FaMoon
- FaSun
- FaYoutube
- FaInfoCircle
- FaSave
- FaEyeSlash
- FaCheck
- FaRegCheckCircle
- FaExternalLinkAlt
- FaChevronUp
- FaChevronDown
- FaUser
- FaThumbsUp
- FaGoogle
- FaChevronLeft
- FaTrashAlt
- FaCheckCircle
- FaExclamationCircle
- FaCode
- FaFilter
- FaLinkedinIn
- FaHome
- FaAngleRight
- FaAngleLeft
- FaCopy
- FaArrowRight
- FaThumbsDown
- FaTimesCircle
- FaMapMarkedAlt
- FaNetworkWired
- FaFacebook
- FaMedal
- FaQuestionCircle
- FaAppStoreIos
- FaRegNewspaper
- FaLinkedin
- FaAward
- FaSpinner
- FaBell
- FaLink
- FaCog
- FaCaretDown
- FaCaretLeft
- FaCaretRight
- FaRegQuestionCircle
- FaSignInAlt
- FaRegCircle
- FaPlayCircle
- FaBook
- FaMinus
- FaRegClock
- FaRegTimesCircle
- FaUserClock
- FaClipboardCheck
- FaTelegram
- FaToolbox
- FaCalendarAlt
- FaChevronCircleDown
- FaChevronCircleUp
- FaChevronCircleRight
- FaCogs
- FaDownload
- FaSitemap
- FaTrophy
- FaGripVertical
- FaFlagCheckered
- FaMapMarkerAlt
- FaChrome
- FaRegStickyNote
- FaRegSun
- FaTags
- FaGetPocket
- FaRegEdit
- FaRobot
- FaDev
- FaQuora
- FaGraduationCap
- FaClipboard
- FaVine
- FaMicroscope
- FaReact
- FaVuejs
- FaPalette
- FaPen
- FaSmile
- FaPaperPlane
- FaImage
- FaUserPlus
- FaAnchor
- FaCaretUp
- FaRss
- FaRegLightbulb
- FaStar
- FaSignOutAlt
- FaUserMinus
- FaEnvelopeOpenText
- FaPencilAlt
- FaExclamation
- FaUnlock
- FaLock
- FaSlack
- FaUserCircle
- FaEnvelope
- FaKey
- FaRegStar
- FaWrench
- FaMarkdown
- FaArrowCircleLeft
- FaArrowCircleRight
- FaScroll
- FaUserFriends
- FaBolt
- FaExpand
- FaLocationArrow
- FaStopCircle
- FaHandHolding
- FaPhotoVideo
- FaShareAlt
- FaVoicemail
- FaGithubAlt
- FaLifeRing
- FaSyncAlt
- FaSoundcloud
- FaSpotify
- FaHistory
- FaBloggerB
- FaDrawPolygon
- FaHandPaper
- FaHandPointer
- FaPhone
- FaList
- FaMailBulk
- FaHourglass
- FaMediumM
- FaPlay
- FaGift
- FaChevronRight
- FaLongArrowAltRight
- FaMedium
- FaWindowClose
- FaEllipsisH
- FaVolumeUp
- FaVolumeMute
- FaKeyboard
- FaHammer
- FaFileImport
- FaListOl
- FaSquare
- FaFillDrip
- FaUserLock
- FaRegPlusSquare
- FaRegFile
- FaSlash
- FaCloudUploadAlt
- FaBackspace
- FaAngleDoubleRight
- FaAngleDoubleLeft
- FaGlasses
- FaPause
- FaCheckSquare
- FaComment
- FaPrint
- FaShareSquare
- FaChartBar
- FaMagic
- FaBicycle
- FaCat
- FaDirections
- FaGlobeAfrica
- FaMountain
- FaUpload
- FaLightbulb
- FaDocker
- FaTwitterSquare
- FaGlobeAmericas
- FaLinux
- FaFile
- FaDesktop
- FaFacebookMessenger
- FaWpforms
- FaBomb
- FaBars
- FaTabletAlt
- FaMemory
- FaCalendarDay
- Fa500Px
- FaAdobe
- FaAdversal
- FaAirbnb
- FaAlipay
- FaAmazon
- FaAmazonPay
- FaBehanceSquare
- FaInstagramSquare
- FaLaugh
- FaMagento
- FaOpera
- FaYinYang
Other Related APIs
react-icons/fa#FaRegStickyNote TypeScript Examples
The following examples show how to use
react-icons/fa#FaRegStickyNote.
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: NoteParagraph.tsx From personal-archive with MIT License | 6 votes |
NoteParagraph: FC<Props> = ({paragraph, referencedArticles, onMoveUp, onMoveDown, onReload}) => {
const currentReferencedArticleIDs = paragraph.referenceArticles.map(a => a.articleID)
const currentReferencedArticles = referencedArticles
.filter((article: Article) => currentReferencedArticleIDs.includes(article.id))
return (
<WrapperPanel>
<NoteParagraphButtons
paragraph={paragraph}
onMoveUp={onMoveUp}
onMoveDown={onMoveDown}
onReload={onReload}
/>
<MarkdownContent content={paragraph.content}/>
<div style={{textAlign: 'right'}}>
{
currentReferencedArticles.map(article => (
<Tag key={`article-${article.id}`} size="small">
<Link to={`/articles/${article.id}`}>
<FaRegStickyNote />
{article.title}
</Link>
</Tag>
))
}
{
paragraph.referenceWebs.map(web => (
<Tag key={`web-${web.id}`} size="small">
<IoEarthOutline />
<a href={web.url} target="_blank" rel="noreferrer">{web.url}</a>
</Tag>
))
}
</div>
</WrapperPanel>
)
}
Example #2
Source File: MainLayout.tsx From personal-archive with MIT License | 5 votes |
MainLayout: FC<Props> = ({ side, title, children}) => {
const [showSearchDrawer, setShowSearchDrawer] = useState(false)
const [showNav, setShowNav] = useState(false) // only works in mobile
const history = useHistory()
useEffect(() => {
// 페이지 이동시 초기화
history.listen(() => setShowNav(false))
}, [history])
useSubscribe(ShowSearchDrawer, (isOpened: boolean) => setShowSearchDrawer(isOpened))
const customTokens = getTokens({})
return (
<ThemeProvider theme={{orbit: customTokens}}>
<Parent>
<Helmet>
<title>{getTitle(title)}</title>
</Helmet>
<Header>
<Logo>PA</Logo>
<Menu onClick={() => history.push(`/tags/all`)}>
<FaRegNewspaper size="21px" />
</Menu>
<Menu onClick={() => history.push(`/notes`)}>
<FaRegStickyNote size="21px" />
</Menu>
<Menu onClick={() => setShowSearchDrawer(true)}>
<FaSearch size="21px" />
</Menu>
<Menu onClick={() => history.push(`/settings`)}>
<FaRegSun size="21px" />
</Menu>
<DarkModeSwitch />
</Header>
<Middle>
<Mobile>
<When condition={side != null}>
<Menu onClick={() => setShowNav(true)}>
<MenuHamburger/>
</Menu>
</When>
</Mobile>
</Middle>
<Body>
<Desktop>
<When condition={side != null}>
<Nav>
{side}
</Nav>
</When>
</Desktop>
<Main>
{children}
<SearchDrawer
show={showSearchDrawer}
onClose={() => setShowSearchDrawer(false)}
/>
</Main>
</Body>
<Drawer
shown={showNav}
onClose={() => setShowNav(false)}
>
<Stack>
{side}
</Stack>
</Drawer>
</Parent>
</ThemeProvider>
)
}