9 releases (4 breaking)

0.5.1 Jun 16, 2024
0.5.0 May 14, 2024
0.4.0 May 14, 2024
0.3.1 Feb 23, 2024
0.1.0 Oct 19, 2023

#149 in Images

Download history 4/week @ 2024-03-23 33/week @ 2024-03-30 16/week @ 2024-04-06 12/week @ 2024-04-13 9/week @ 2024-04-20 3/week @ 2024-04-27 250/week @ 2024-05-11 98/week @ 2024-05-18 35/week @ 2024-05-25 51/week @ 2024-06-01 48/week @ 2024-06-08 266/week @ 2024-06-15 68/week @ 2024-06-22 11/week @ 2024-06-29 51/week @ 2024-07-06

407 downloads per month

MIT license

6.5MB
91K SLoC

phosphor-leptos

Phosphor is a flexible icon family for interfaces, diagrams, presentations — whatever, really. More icons at phosphoricons.com.

Installation

phosphor-leptos = "0.5.0"

or

cargo add phosphor-leptos

Usage

use leptos::*;
use phosphor_leptos::{IconWeight, Horse, Heart, Cube};
#[component]
fn MyComponent() -> impl IntoView {
    view! {
        <Horse />
        <Heart color="#AE2983" weight=IconWeight::Fill size="32px" />
        <Cube color="teal" weight=IconWeight::Duotone />
    }
}

Props

All of the props are MaybeSignal's so they can be static or reactive.

  • color?: string – Icon stroke/fill color. Can be any CSS color string, including hex, rgb, rgba, hsl, hsla, named colors, or the special currentColor variable.
  • size?: number | string – Icon height & width. As with standard React elements, this can be a number, or a string with units in px, %, em, rem, pt, cm, mm, in.
  • weight?: IconWeight – Icon weight/style. Can also be used, for example, to "toggle" an icon's state: a rating component could use Stars with IconWeight::Regular to denote an empty star, and IconWeight::Fill to denote a filled star.
  • mirrored?: boolean – Flip the icon horizontally. Can be useful in RTL languages where normal icon orientation is not appropriate.

License

MIT © Phosphor Icons

Knowledge

Contributing

To generate all the icons, run

cargo xtask update

Dependencies

~19–32MB
~513K SLoC