npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sweet-sfsymbols

v0.7.2

Published

SF Symbols brought to you by Expo's Module API

Downloads

4,048

Readme

"Buy Me A Coffee"

Sweet SF Symbols

SF Symbols are a set of over 5,000 consistent, highly configurable symbols you can use in your app. SF Symbols are designed to integrate seamlessly with the San Francisco system font, so the symbols automatically ensure optical vertical alignment with text for all weights and sizes.

Highlights

Installation

Sweet SFSymbols requires Expo SDK 46+ and Xcode 15+.

Expo

Install the library:

npx expo install sweet-sfsymbols

Then rebuild your app:

# Using EAS? run a build in the cloud!
eas build --platform ios

# Otherwise, prebuild and run a local build
npx expo prebuild -p ios --clean
npx expo run:ios

NOTE: This library will not work with Expo Go. Use a development build instead!

Usage

See the example app.

<SFSymbol />

The SFSymbol component uses SwiftUI's Image view to render SF Symbols.

Props

name

The name of the symbol.

required: yes

type: SystemName

default: ""

colors

The colors of the symbol. For monochrome and hierarchical rendering modes, this is a single color. For palette rendering mode, this is an array of colors. For multicolor rendering mode, this is ignored and system default values are used. This supports hex, hsl(a), rgb(a), web standard color names, PlatformColor and DynamicColorIOS values.

required: no

type: (string | OpaqueColorValue)[]

default: []

weight

The weight of the symbol.

required: no

type: "thin" | "ultraLight" | "light" | "regular" | "medium" | "semibold" | "bold" | "heavy" | "black"

default: "regular"

scale

The scale of the symbol.

required: no

type: "small" | "medium" | "large"

default: "medium"

renderingMode (iOS 15+)

The rendering mode of the symbol. Learn more about rendering modes here.

required: no

type: "monochrome" | "hierarchical" | "palette" | "multicolor"

default: "monochrome"

size

The size of the symbol. This deifines the frame of the image view.

required: no

type: number

default: 50

variableValue (iOS 16+)

The variable value of the symbol. Only some symbols support variable values, ususally those that represent a change in value (like speaker.wave.3) The variable value determines what percentage of the symbol is filled in. Learn more about variable values here.

required: no

type: number

default: 1.0

variant (iOS 15+)

The variant of the symbol. This is an alternate way to modify the symbol's appearance without modifying the symbol name. Learn more about symbol variants here.

required: no

type: SymbolVariant

default: none

symbolEffect (iOS 17+)

The symbol effect of the symbol. Adds an animation to the symbol. Learn more about symbol effects here.

required: no

type: SymbolEffect

default: undefined

style

The style of the symbol.

required: no

type: ViewStyle

default: undefined

Disclaimer

It's your responsibility to check Apple's rules about when and where certain icons can be used. You can check the Human Interface Guidelines and use the official SF Symbols app to check for any restrictions on the icons you want to use.

This library isn't associated with Apple, and only exposes a way to use them within React Native apps on iOS.

Symbol names not up to date?

If you notice that the symbol names are not up to date, either submit an issue or a PR with the updated symbol names!