Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 579 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 579 Bytes

Glutinum.Feliz.Lucide

Binding for lucide-react

Usage

Prefixed usage

open Feliz
open Feliz.Lucide

[<ReactComponent>]
let private App () =
    Lucide.Camera [
        lucide.size 48 // Use lucide specific props
        svg.fill "lightblue" // Use any svg props
    ]

Non-prefixed usage

open Feliz
open Feliz.Lucide

open type Lucide

[<ReactComponent>]
let private App () =
    Camera [
        lucide.size 48 // Use lucide specific props
        svg.fill "lightblue" // Use any svg props
    ]