icons

package
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 27, 2026 License: MIT Imports: 6 Imported by: 0

README

Icons Package

The icons package provides a flexible icon system with comprehensive Lucide icon integration for ForgeUI.

Features

  • 🎨 Customizable: Size, color, and stroke width options
  • 📦 Lucide Icons: 1600+ pre-built beautiful icons (auto-generated from latest Lucide)
  • 🔧 Flexible: Easy to add custom icons
  • Accessible: Inline SVG with proper attributes
  • 🔄 Auto-generated: Easy to update with new Lucide releases

Basic Usage

import "github.com/xraph/forgeui/icons"

// Use a pre-built icon
@icons.Check()

// Customize icon properties
@icons.Search(icons.WithSize(32), icons.WithColor("blue"))

// Use in a button
@button.Button(button.Props{}) {
    @icons.Plus(icons.WithSize(16))
    Add Item
}

Available Icons

This package includes 1666 icons from Lucide Icons. All icons are auto-generated from the latest Lucide release.

Icon Discovery

To find available icons:

  1. Browse the Lucide Icons website
  2. Convert the icon name from kebab-case to PascalCase
    • Example: arrow-rightArrowRight()
    • Example: chevron-downChevronDown()
    • Example: circle-checkCircleCheck()
Commonly Used Icons

Navigation:

  • ChevronDown, ChevronUp, ChevronLeft, ChevronRight
  • Menu, House, ExternalLink, ArrowLeft, ArrowRight

Actions:

  • Plus, Minus, Check, X
  • Edit, Trash, Copy, Save
  • Download, Upload, Share
  • Search, Filter, Settings

Status:

  • CircleAlert, Info, CircleCheck, CircleX
  • Loader, AlertTriangle, HelpCircle

User & Communication:

  • User, Mail, Phone, MessageCircle
  • Eye, EyeOff, Bell, Send

Media & Files:

  • File, Folder, Image, Video, Music
  • FileText, FilePlus, FolderOpen
Backward Compatibility

For compatibility with previous versions, common aliases are provided:

  • Home() → maps to House()
  • AlertCircle() → maps to CircleAlert()
  • CheckCircle() → maps to CircleCheck()
  • XCircle() → maps to CircleX()

Customization Options

Size
// Default size is 24px
icons.Check(icons.WithSize(16))  // Small
icons.Check(icons.WithSize(32))  // Large
Color
// Default is "currentColor" (inherits text color)
icons.Check(icons.WithColor("red"))
icons.Check(icons.WithColor("#3b82f6"))
Stroke Width
// Default is 2
icons.Check(icons.WithStrokeWidth(1.5))  // Thinner
icons.Check(icons.WithStrokeWidth(3))    // Thicker
Custom Classes
icons.Check(icons.WithClass("text-green-500 hover:text-green-600"))
Custom Attributes
icons.Check(
    icons.WithAttrs(templ.Attributes{
        "aria-label":   "Success",
        "data-testid":  "check-icon",
    }),
)

Creating Custom Icons

Single Path Icon
customIcon := icons.Icon("M5 12h14")  // SVG path data
Multi-Path Icon
customIcon := icons.MultiPathIcon([]string{
    "M18 6 6 18",
    "m6 6 12 12",
})

Examples

Icon in Button
@button.Button(button.Props{}) {
    @icons.Check(icons.WithSize(16))
    Save
}
Icon-Only Button
@button.Button(button.Props{Variant: button.VariantGhost, Size: button.SizeIcon}) {
    @icons.X(icons.WithSize(16))
}
Status Indicator
@alert.Alert(alert.Props{Variant: alert.VariantSuccess}) {
    @icons.CircleCheck(icons.WithSize(20), icons.WithColor("green"))
    @alert.Title() { Success }
    @alert.Description() { Your changes have been saved. }
}
Loading Spinner
@button.Button(button.Props{Disabled: true}) {
    @icons.Loader(icons.WithSize(16), icons.WithClass("animate-spin"))
    Loading...
}

Regenerating Icons

The icon library is auto-generated from Lucide's official icon set. To update to the latest Lucide release:

# Option 1: Using go generate
cd icons
go generate

# Option 2: Run the generator directly
cd icons/internal/generate
go run main.go

The generator will:

  1. Fetch the latest icon metadata from the Lucide CDN
  2. Parse all SVG elements (paths, circles, rects, polygons, etc.)
  3. Convert icon names from kebab-case to PascalCase
  4. Generate Go functions for all icons
  5. Write to lucide_generated.go
Generator Details
  • Data Source: https://cdn.jsdelivr.net/npm/lucide-static@latest/
  • Icon Count: 1666 icons (as of generation)
  • File Size: ~16,000 lines of generated Go code
  • Naming Convention:
    • arrow-rightArrowRight()
    • 3d-boxThreeDBox()
    • Reserved names get Icon suffix: optionOptionIcon()

Icon Reference

All icons are from Lucide - a beautiful, consistent icon set.

Best Practices

  1. Use appropriate sizes: 16px for buttons, 20-24px for standalone icons
  2. Inherit color: Use currentColor (default) to match text color
  3. Add aria-labels: For icon-only buttons, add descriptive labels
  4. Consistent stroke: Stick to default stroke width (2) for consistency
  5. Semantic usage: Choose icons that clearly represent their action

Performance

Icons are rendered as inline SVG elements, which:

  • ✅ Load instantly (no HTTP requests)
  • ✅ Scale perfectly at any size
  • ✅ Support CSS styling and animations
  • ✅ Work in all browsers

Documentation

Overview

Package icons provides a flexible icon system with Lucide icon integration. Icons are rendered as inline SVG elements with customizable size, color, and stroke width.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AArrowDown

func AArrowDown(opts ...Option) templ.Component

AArrowDown creates a a-arrow-down icon Tags: letter, font size, text, formatting, smaller

func AArrowUp

func AArrowUp(opts ...Option) templ.Component

AArrowUp creates a a-arrow-up icon Tags: letter, font size, text, formatting, larger, bigger

func ALargeSmall

func ALargeSmall(opts ...Option) templ.Component

ALargeSmall creates a a-large-small icon Tags: letter, font size, text, formatting

func Accessibility

func Accessibility(opts ...Option) templ.Component

Accessibility creates a accessibility icon Tags: disability, disabled, dda, wheelchair

func Activity

func Activity(opts ...Option) templ.Component

Activity creates a activity icon Tags: pulse, action, motion, movement, exercise, fitness, healthcare, heart rate monitor, vital signs, vitals, emergency room, er, intensive care, hospital, defibrillator, earthquake, siesmic, magnitude, richter scale, aftershock, tremor, shockwave, audio, waveform, synthesizer, synthesiser, music

func AirVent

func AirVent(opts ...Option) templ.Component

AirVent creates a air-vent icon Tags: air conditioner, ac, central air, cooling, climate-control

func Airplay

func Airplay(opts ...Option) templ.Component

Airplay creates a airplay icon Tags: stream, cast, mirroring, screen, monitor, macos, osx

func AlarmClock

func AlarmClock(opts ...Option) templ.Component

AlarmClock creates a alarm-clock icon Tags: morning

func AlarmClockCheck

func AlarmClockCheck(opts ...Option) templ.Component

AlarmClockCheck creates a alarm-clock-check icon Tags: done, todo, tick, complete, task

func AlarmClockMinus

func AlarmClockMinus(opts ...Option) templ.Component

AlarmClockMinus creates a alarm-clock-minus icon Tags: remove

func AlarmClockOff

func AlarmClockOff(opts ...Option) templ.Component

AlarmClockOff creates a alarm-clock-off icon Tags: morning, turn-off

func AlarmClockPlus

func AlarmClockPlus(opts ...Option) templ.Component

AlarmClockPlus creates a alarm-clock-plus icon Tags: add

func AlarmSmoke

func AlarmSmoke(opts ...Option) templ.Component

AlarmSmoke creates a alarm-smoke icon Tags: fire, alert, warning, detector, carbon monoxide, safety, equipment, amenities

func Album

func Album(opts ...Option) templ.Component

Album creates a album icon Tags: photo, book

func AlertCircle

func AlertCircle(opts ...Option) templ.Component

AlertCircle creates an alert/warning icon with a circle (alias for CircleAlert)

func AlignCenterHorizontal

func AlignCenterHorizontal(opts ...Option) templ.Component

AlignCenterHorizontal creates a align-center-horizontal icon Tags: items, flex, justify

func AlignCenterVertical

func AlignCenterVertical(opts ...Option) templ.Component

AlignCenterVertical creates a align-center-vertical icon Tags: items, flex, justify

func AlignEndHorizontal

func AlignEndHorizontal(opts ...Option) templ.Component

AlignEndHorizontal creates a align-end-horizontal icon Tags: items, bottom, flex, justify

func AlignEndVertical

func AlignEndVertical(opts ...Option) templ.Component

AlignEndVertical creates a align-end-vertical icon Tags: items, right, flex, justify

func AlignHorizontalDistributeCenter

func AlignHorizontalDistributeCenter(opts ...Option) templ.Component

AlignHorizontalDistributeCenter creates a align-horizontal-distribute-center icon Tags: items, flex, justify, space, evenly, around

func AlignHorizontalDistributeEnd

func AlignHorizontalDistributeEnd(opts ...Option) templ.Component

AlignHorizontalDistributeEnd creates a align-horizontal-distribute-end icon Tags: right, items, flex, justify

func AlignHorizontalDistributeStart

func AlignHorizontalDistributeStart(opts ...Option) templ.Component

AlignHorizontalDistributeStart creates a align-horizontal-distribute-start icon Tags: left, items, flex, justify

func AlignHorizontalJustifyCenter

func AlignHorizontalJustifyCenter(opts ...Option) templ.Component

AlignHorizontalJustifyCenter creates a align-horizontal-justify-center icon Tags: center, items, flex, justify

func AlignHorizontalJustifyEnd

func AlignHorizontalJustifyEnd(opts ...Option) templ.Component

AlignHorizontalJustifyEnd creates a align-horizontal-justify-end icon Tags: right, items, flex, justify

func AlignHorizontalJustifyStart

func AlignHorizontalJustifyStart(opts ...Option) templ.Component

AlignHorizontalJustifyStart creates a align-horizontal-justify-start icon Tags: left, items, flex, justify

func AlignHorizontalSpaceAround

func AlignHorizontalSpaceAround(opts ...Option) templ.Component

AlignHorizontalSpaceAround creates a align-horizontal-space-around icon Tags: center, items, flex, justify, distribute, between

func AlignHorizontalSpaceBetween

func AlignHorizontalSpaceBetween(opts ...Option) templ.Component

AlignHorizontalSpaceBetween creates a align-horizontal-space-between icon Tags: around, items, bottom, flex, justify

func AlignStartHorizontal

func AlignStartHorizontal(opts ...Option) templ.Component

AlignStartHorizontal creates a align-start-horizontal icon Tags: top, items, flex, justify

func AlignStartVertical

func AlignStartVertical(opts ...Option) templ.Component

AlignStartVertical creates a align-start-vertical icon Tags: left, items, flex, justify

func AlignVerticalDistributeCenter

func AlignVerticalDistributeCenter(opts ...Option) templ.Component

AlignVerticalDistributeCenter creates a align-vertical-distribute-center icon Tags: items, flex, justify, space, evenly, around

func AlignVerticalDistributeEnd

func AlignVerticalDistributeEnd(opts ...Option) templ.Component

AlignVerticalDistributeEnd creates a align-vertical-distribute-end icon Tags: bottom, items, flex, justify

func AlignVerticalDistributeStart

func AlignVerticalDistributeStart(opts ...Option) templ.Component

AlignVerticalDistributeStart creates a align-vertical-distribute-start icon Tags: top, items, flex, justify

func AlignVerticalJustifyCenter

func AlignVerticalJustifyCenter(opts ...Option) templ.Component

AlignVerticalJustifyCenter creates a align-vertical-justify-center icon Tags: center, items, flex, justify, distribute, between

func AlignVerticalJustifyEnd

func AlignVerticalJustifyEnd(opts ...Option) templ.Component

AlignVerticalJustifyEnd creates a align-vertical-justify-end icon Tags: bottom, items, flex, justify, distribute, between

func AlignVerticalJustifyStart

func AlignVerticalJustifyStart(opts ...Option) templ.Component

AlignVerticalJustifyStart creates a align-vertical-justify-start icon Tags: top, items, flex, justify, distribute, between

func AlignVerticalSpaceAround

func AlignVerticalSpaceAround(opts ...Option) templ.Component

AlignVerticalSpaceAround creates a align-vertical-space-around icon Tags: center, items, flex, justify, distribute, between

func AlignVerticalSpaceBetween

func AlignVerticalSpaceBetween(opts ...Option) templ.Component

AlignVerticalSpaceBetween creates a align-vertical-space-between icon Tags: center, items, flex, justify, distribute, between

func Ambulance

func Ambulance(opts ...Option) templ.Component

Ambulance creates a ambulance icon Tags: ambulance, emergency, medical, vehicle, siren, healthcare, transportation, rescue, urgent, first aid

func Ampersand

func Ampersand(opts ...Option) templ.Component

Ampersand creates a ampersand icon Tags: and, typography, operator, join, concatenate, code, &

func Ampersands

func Ampersands(opts ...Option) templ.Component

Ampersands creates a ampersands icon Tags: and, operator, then, code, &&

func Amphora

func Amphora(opts ...Option) templ.Component

Amphora creates a amphora icon Tags: pottery, artifact, artefact, vase, ceramics, clay, archaeology, museum, wine, oil

func Anchor

func Anchor(opts ...Option) templ.Component

Anchor creates a anchor icon Tags: ship

func Angry

func Angry(opts ...Option) templ.Component

Angry creates a angry icon Tags: emoji, anger, face, emotion

func Annoyed

func Annoyed(opts ...Option) templ.Component

Annoyed creates a annoyed icon Tags: emoji, nuisance, face, emotion

func Antenna

func Antenna(opts ...Option) templ.Component

Antenna creates a antenna icon Tags: signal, connection, connectivity, tv, television, broadcast, live, frequency, tune, scan, channels, aerial, receiver, transmission, transducer, terrestrial, satellite, cable

func Anvil

func Anvil(opts ...Option) templ.Component

Anvil creates a anvil icon Tags: metal, iron, alloy, materials, heavy, weight, blacksmith, forge, acme

func Aperture

func Aperture(opts ...Option) templ.Component

Aperture creates a aperture icon Tags: camera, photo, pictures, shutter, exposure

func AppWindow

func AppWindow(opts ...Option) templ.Component

AppWindow creates a app-window icon Tags: application, menu bar, pane, executable

func AppWindowMac

func AppWindowMac(opts ...Option) templ.Component

AppWindowMac creates a app-window-mac icon Tags: application, menu bar, pane, preferences, macos, osx, executable

func Apple

func Apple(opts ...Option) templ.Component

Apple creates a apple icon Tags: fruit, food, healthy, snack, nutrition, fresh, produce, grocery, organic, harvest, vitamin, red, green, juicy, sweet, tart, bite, orchard, plant, core, raw, diet

func Archive

func Archive(opts ...Option) templ.Component

Archive creates a archive icon Tags: index, backup, box, storage, records

func ArchiveRestore

func ArchiveRestore(opts ...Option) templ.Component

ArchiveRestore creates a archive-restore icon Tags: unarchive, index, backup, box, storage, records

func ArchiveX

func ArchiveX(opts ...Option) templ.Component

ArchiveX creates a archive-x icon Tags: index, backup, box, storage, records, junk

func Armchair

func Armchair(opts ...Option) templ.Component

Armchair creates a armchair icon Tags: sofa, furniture, leisure, lounge, loveseat, couch

func ArrowBigDown

func ArrowBigDown(opts ...Option) templ.Component

ArrowBigDown creates a arrow-big-down icon Tags: backwards, reverse, direction, south

func ArrowBigDownDash

func ArrowBigDownDash(opts ...Option) templ.Component

ArrowBigDownDash creates a arrow-big-down-dash icon Tags: backwards, reverse, slow, direction, south, download

func ArrowBigLeft

func ArrowBigLeft(opts ...Option) templ.Component

ArrowBigLeft creates a arrow-big-left icon Tags: previous, back, direction, west, indicate turn

func ArrowBigLeftDash

func ArrowBigLeftDash(opts ...Option) templ.Component

ArrowBigLeftDash creates a arrow-big-left-dash icon Tags: previous, back, direction, west, turn, corner

func ArrowBigRight

func ArrowBigRight(opts ...Option) templ.Component

ArrowBigRight creates a arrow-big-right icon Tags: next, forward, direction, east, indicate turn

func ArrowBigRightDash

func ArrowBigRightDash(opts ...Option) templ.Component

ArrowBigRightDash creates a arrow-big-right-dash icon Tags: next, forward, direction, east, turn, corner

func ArrowBigUp

func ArrowBigUp(opts ...Option) templ.Component

ArrowBigUp creates a arrow-big-up icon Tags: shift, keyboard, button, mac, capitalize, capitalise, forward, direction, north

func ArrowBigUpDash

func ArrowBigUpDash(opts ...Option) templ.Component

ArrowBigUpDash creates a arrow-big-up-dash icon Tags: caps lock, capitals, keyboard, button, mac, forward, direction, north, faster, speed, boost

func ArrowDown

func ArrowDown(opts ...Option) templ.Component

ArrowDown creates a arrow-down icon Tags: backwards, reverse, direction, south

func ArrowDown01

func ArrowDown01(opts ...Option) templ.Component

ArrowDown01 creates a arrow-down-0-1 icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling, numerical

func ArrowDown10

func ArrowDown10(opts ...Option) templ.Component

ArrowDown10 creates a arrow-down-1-0 icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling, numerical

func ArrowDownAZ

func ArrowDownAZ(opts ...Option) templ.Component

ArrowDownAZ creates a arrow-down-a-z icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling, alphabetical

func ArrowDownFromLine

func ArrowDownFromLine(opts ...Option) templ.Component

ArrowDownFromLine creates a arrow-down-from-line icon Tags: backwards, reverse, direction, south, download, expand, fold, vertical

func ArrowDownLeft

func ArrowDownLeft(opts ...Option) templ.Component

ArrowDownLeft creates a arrow-down-left icon Tags: direction, south-west, diagonal

func ArrowDownNarrowWide

func ArrowDownNarrowWide(opts ...Option) templ.Component

ArrowDownNarrowWide creates a arrow-down-narrow-wide icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling

func ArrowDownRight

func ArrowDownRight(opts ...Option) templ.Component

ArrowDownRight creates a arrow-down-right icon Tags: direction, south-east, diagonal

func ArrowDownToDot

func ArrowDownToDot(opts ...Option) templ.Component

ArrowDownToDot creates a arrow-down-to-dot icon Tags: direction, south, waypoint, location, step, into

func ArrowDownToLine

func ArrowDownToLine(opts ...Option) templ.Component

ArrowDownToLine creates a arrow-down-to-line icon Tags: behind, direction, south, download, save, git, version control, pull, collapse, fold, vertical

func ArrowDownUp

func ArrowDownUp(opts ...Option) templ.Component

ArrowDownUp creates a arrow-down-up icon Tags: bidirectional, two-way, 2-way, swap, switch, network, traffic, flow, mobile data, internet, sort, reorder, move

func ArrowDownWideNarrow

func ArrowDownWideNarrow(opts ...Option) templ.Component

ArrowDownWideNarrow creates a arrow-down-wide-narrow icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling

func ArrowDownZA

func ArrowDownZA(opts ...Option) templ.Component

ArrowDownZA creates a arrow-down-z-a icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling, alphabetical, reverse

func ArrowLeft

func ArrowLeft(opts ...Option) templ.Component

ArrowLeft creates a arrow-left icon Tags: previous, back, direction, west, <-

func ArrowLeftFromLine

func ArrowLeftFromLine(opts ...Option) templ.Component

ArrowLeftFromLine creates a arrow-left-from-line icon Tags: previous, back, direction, west, expand, fold, horizontal, <-|

func ArrowLeftRight

func ArrowLeftRight(opts ...Option) templ.Component

ArrowLeftRight creates a arrow-left-right icon Tags: bidirectional, two-way, 2-way, swap, switch, transaction, reorder, move, <-, ->

func ArrowLeftToLine

func ArrowLeftToLine(opts ...Option) templ.Component

ArrowLeftToLine creates a arrow-left-to-line icon Tags: previous, back, direction, west, collapse, fold, horizontal, |<-

func ArrowRight

func ArrowRight(opts ...Option) templ.Component

ArrowRight creates a arrow-right icon Tags: forward, next, direction, east, ->

func ArrowRightFromLine

func ArrowRightFromLine(opts ...Option) templ.Component

ArrowRightFromLine creates a arrow-right-from-line icon Tags: next, forward, direction, east, export, expand, fold, horizontal, |->

func ArrowRightLeft

func ArrowRightLeft(opts ...Option) templ.Component

ArrowRightLeft creates a arrow-right-left icon Tags: bidirectional, two-way, 2-way, swap, switch, transaction, reorder, move, <-, ->

func ArrowRightToLine

func ArrowRightToLine(opts ...Option) templ.Component

ArrowRightToLine creates a arrow-right-to-line icon Tags: next, forward, direction, east, tab, keyboard, mac, indent, collapse, fold, horizontal, ->|

func ArrowUp

func ArrowUp(opts ...Option) templ.Component

ArrowUp creates a arrow-up icon Tags: forward, direction, north

func ArrowUp01

func ArrowUp01(opts ...Option) templ.Component

ArrowUp01 creates a arrow-up-0-1 icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling, numerical

func ArrowUp10

func ArrowUp10(opts ...Option) templ.Component

ArrowUp10 creates a arrow-up-1-0 icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling, numerical

func ArrowUpAZ

func ArrowUpAZ(opts ...Option) templ.Component

ArrowUpAZ creates a arrow-up-a-z icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling, alphabetical

func ArrowUpDown

func ArrowUpDown(opts ...Option) templ.Component

ArrowUpDown creates a arrow-up-down icon Tags: bidirectional, two-way, 2-way, swap, switch, network, mobile data, internet, sort, reorder, move

func ArrowUpFromDot

func ArrowUpFromDot(opts ...Option) templ.Component

ArrowUpFromDot creates a arrow-up-from-dot icon Tags: direction, north, step, out

func ArrowUpFromLine

func ArrowUpFromLine(opts ...Option) templ.Component

ArrowUpFromLine creates a arrow-up-from-line icon Tags: forward, direction, north, upload, git, version control, push, expand, fold, vertical

func ArrowUpLeft

func ArrowUpLeft(opts ...Option) templ.Component

ArrowUpLeft creates a arrow-up-left icon Tags: direction, north-west, diagonal

func ArrowUpNarrowWide

func ArrowUpNarrowWide(opts ...Option) templ.Component

ArrowUpNarrowWide creates a arrow-up-narrow-wide icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling

func ArrowUpRight

func ArrowUpRight(opts ...Option) templ.Component

ArrowUpRight creates a arrow-up-right icon Tags: direction, north-east, diagonal

func ArrowUpToLine

func ArrowUpToLine(opts ...Option) templ.Component

ArrowUpToLine creates a arrow-up-to-line icon Tags: forward, direction, north, upload, collapse, fold, vertical

func ArrowUpWideNarrow

func ArrowUpWideNarrow(opts ...Option) templ.Component

ArrowUpWideNarrow creates a arrow-up-wide-narrow icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling

func ArrowUpZA

func ArrowUpZA(opts ...Option) templ.Component

ArrowUpZA creates a arrow-up-z-a icon Tags: filter, sort, ascending, descending, increasing, decreasing, rising, falling, alphabetical, reverse

func ArrowsUpFromLine

func ArrowsUpFromLine(opts ...Option) templ.Component

ArrowsUpFromLine creates a arrows-up-from-line icon Tags: direction, orientation, this way up, vertical, package, box, fragile, postage, shipping

func Asterisk

func Asterisk(opts ...Option) templ.Component

Asterisk creates a asterisk icon Tags: reference, times, multiply, multiplication, operator, code, glob pattern, wildcard, *

func AtSign

func AtSign(opts ...Option) templ.Component

AtSign creates a at-sign icon Tags: mention, at, email, message, @

func Atom

func Atom(opts ...Option) templ.Component

Atom creates a atom icon Tags: atomic, nuclear, physics, particle, element, molecule, electricity, energy, chemistry

func AudioLines

func AudioLines(opts ...Option) templ.Component

AudioLines creates a audio-lines icon Tags: graphic equaliser, sound, noise, listen, hearing, hertz, frequency, wavelength, vibrate, sine, synthesizer, synthesiser, levels, track, music, playback, radio, broadcast, airwaves, voice, vocals, singer, song

func AudioWaveform

func AudioWaveform(opts ...Option) templ.Component

AudioWaveform creates a audio-waveform icon Tags: sound, noise, listen, hearing, hertz, frequency, wavelength, vibrate, sine, synthesizer, synthesiser, levels, track, music, playback, radio, broadcast, airwaves, voice, vocals, singer, song

func Award

func Award(opts ...Option) templ.Component

Award creates a award icon Tags: achievement, badge, rosette, prize, winner

func Axe

func Axe(opts ...Option) templ.Component

Axe creates a axe icon Tags: hatchet, weapon, chop, sharp, equipment, fireman, firefighter, brigade, lumberjack, woodcutter, logger, forestry

func Axis3d

func Axis3d(opts ...Option) templ.Component

Axis3d creates a axis-3d icon Tags: gizmo, coordinates

func Baby

func Baby(opts ...Option) templ.Component

Baby creates a baby icon Tags: child, childproof, children

func Backpack

func Backpack(opts ...Option) templ.Component

Backpack creates a backpack icon Tags: bag, hiking, travel, camping, school, childhood

func Badge

func Badge(opts ...Option) templ.Component

Badge creates a badge icon Tags: check, verified, unverified

func BadgeAlert

func BadgeAlert(opts ...Option) templ.Component

BadgeAlert creates a badge-alert icon Tags: check, verified, unverified, security, safety, issue

func BadgeCent

func BadgeCent(opts ...Option) templ.Component

BadgeCent creates a badge-cent icon Tags: discount, offer, sale, voucher, tag, monetization, marketing, finance, financial, exchange, transaction, payment, cents, dollar, usd, $, ¢

func BadgeCheck

func BadgeCheck(opts ...Option) templ.Component

BadgeCheck creates a badge-check icon Tags: verified, check

func BadgeDollarSign

func BadgeDollarSign(opts ...Option) templ.Component

BadgeDollarSign creates a badge-dollar-sign icon Tags: discount, offer, sale, voucher, tag, monetization, marketing, finance, financial, exchange, transaction, payment, usd, $

func BadgeEuro

func BadgeEuro(opts ...Option) templ.Component

BadgeEuro creates a badge-euro icon Tags: discount, offer, sale, voucher, tag, monetization, marketing, finance, financial, exchange, transaction, payment, €

func BadgeIndianRupee

func BadgeIndianRupee(opts ...Option) templ.Component

BadgeIndianRupee creates a badge-indian-rupee icon Tags: discount, offer, sale, voucher, tag, monetization, marketing, finance, financial, exchange, transaction, payment, inr, ₹

func BadgeInfo

func BadgeInfo(opts ...Option) templ.Component

BadgeInfo creates a badge-info icon Tags: verified, unverified, help

func BadgeJapaneseYen

func BadgeJapaneseYen(opts ...Option) templ.Component

BadgeJapaneseYen creates a badge-japanese-yen icon Tags: discount, offer, sale, voucher, tag, monetization, marketing, finance, financial, exchange, transaction, payment, jpy, ¥

func BadgeMinus

func BadgeMinus(opts ...Option) templ.Component

BadgeMinus creates a badge-minus icon Tags: verified, unverified, delete, remove, erase

func BadgePercent

func BadgePercent(opts ...Option) templ.Component

BadgePercent creates a badge-percent icon Tags: verified, unverified, sale, discount, offer, marketing, sticker, price tag

func BadgePlus

func BadgePlus(opts ...Option) templ.Component

BadgePlus creates a badge-plus icon Tags: verified, unverified, add, create, new

func BadgePoundSterling

func BadgePoundSterling(opts ...Option) templ.Component

BadgePoundSterling creates a badge-pound-sterling icon Tags: discount, offer, sale, voucher, tag, monetization, marketing, finance, financial, exchange, transaction, payment, british, gbp, £

func BadgeQuestionMark

func BadgeQuestionMark(opts ...Option) templ.Component

BadgeQuestionMark creates a badge-question-mark icon Tags: verified, unverified, help

func BadgeRussianRuble

func BadgeRussianRuble(opts ...Option) templ.Component

BadgeRussianRuble creates a badge-russian-ruble icon Tags: discount, offer, sale, voucher, tag, monetization, marketing, finance, financial, exchange, transaction, payment, rub, ₽

func BadgeSwissFranc

func BadgeSwissFranc(opts ...Option) templ.Component

BadgeSwissFranc creates a badge-swiss-franc icon Tags: discount, offer, sale, voucher, tag, monetization, marketing, finance, financial, exchange, transaction, payment, chf, ₣

func BadgeTurkishLira

func BadgeTurkishLira(opts ...Option) templ.Component

BadgeTurkishLira creates a badge-turkish-lira icon Tags: discount, offer, sale, voucher, tag, monetization, marketing, finance, financial, exchange, transaction, payment, try, ₺

func BadgeX

func BadgeX(opts ...Option) templ.Component

BadgeX creates a badge-x icon Tags: verified, unverified, lost, delete, remove

func BaggageClaim

func BaggageClaim(opts ...Option) templ.Component

BaggageClaim creates a baggage-claim icon Tags: baggage, luggage, travel, cart, trolley, suitcase

func Balloon

func Balloon(opts ...Option) templ.Component

Balloon creates a balloon icon Tags: party, festival, congratulations, celebration, decoration, colorful, floating, fun, birthday, event, entertainment

func Ban

func Ban(opts ...Option) templ.Component

Ban creates a ban icon Tags: cancel, no, stop, forbidden, prohibited, error, incorrect, mistake, wrong, failure, circle, slash, null, void

func Banana

func Banana(opts ...Option) templ.Component

Banana creates a banana icon Tags: fruit, food

func Bandage

func Bandage(opts ...Option) templ.Component

Bandage creates a bandage icon Tags: plaster, band-aid, first aid, medical, health, wound, injury, care, treatment, healing, protection, emergency, aid, safety, patch

func Banknote

func Banknote(opts ...Option) templ.Component

Banknote creates a banknote icon Tags: currency, money, payment

func BanknoteArrowDown

func BanknoteArrowDown(opts ...Option) templ.Component

BanknoteArrowDown creates a banknote-arrow-down icon Tags: bill, currency, money, payment, funds, transaction, cash, finance, withdraw, expense, out, payout, refund, debit, spending, decrease

func BanknoteArrowUp

func BanknoteArrowUp(opts ...Option) templ.Component

BanknoteArrowUp creates a banknote-arrow-up icon Tags: bill, currency, money, payment, funds, transaction, cash, finance, deposit, earnings, income, in, credit, prepaid, growth, increase

func BanknoteX

func BanknoteX(opts ...Option) templ.Component

BanknoteX creates a banknote-x icon Tags: bill, currency, money, payment, funds, transaction, cash, finance, error, failed, rejected, canceled, declined, lost, delete, remove

func Barcode

func Barcode(opts ...Option) templ.Component

Barcode creates a barcode icon Tags: scan, checkout, till, cart, transaction, purchase, buy, product, packaging, retail, consumer

func Barrel

func Barrel(opts ...Option) templ.Component

Barrel creates a barrel icon Tags: keg, drum, tank, wine, beer, oak, wood, firkin, hogshead, kilderkin, barrique, solera, aging, whiskey, brewery, distillery, winery, vineyard

func Baseline

func Baseline(opts ...Option) templ.Component

Baseline creates a baseline icon Tags: text, format, color

func Bath

func Bath(opts ...Option) templ.Component

Bath creates a bath icon Tags: amenities, services, bathroom, shower

func Battery

func Battery(opts ...Option) templ.Component

Battery creates a battery icon Tags: power, electricity, energy, accumulator, charge

func BatteryCharging

func BatteryCharging(opts ...Option) templ.Component

BatteryCharging creates a battery-charging icon Tags: power, electricity, energy, accumulator, charge

func BatteryFull

func BatteryFull(opts ...Option) templ.Component

BatteryFull creates a battery-full icon Tags: power, electricity, energy, accumulator, charge

func BatteryLow

func BatteryLow(opts ...Option) templ.Component

BatteryLow creates a battery-low icon Tags: power, electricity, energy, accumulator, charge

func BatteryMedium

func BatteryMedium(opts ...Option) templ.Component

BatteryMedium creates a battery-medium icon Tags: power, electricity, energy, accumulator, charge

func BatteryPlus

func BatteryPlus(opts ...Option) templ.Component

BatteryPlus creates a battery-plus icon Tags: power, electricity, energy, accumulator, charge, plus, economy, health, add, new, maximum, upgrade, extra, +

func BatteryWarning

func BatteryWarning(opts ...Option) templ.Component

BatteryWarning creates a battery-warning icon Tags: power, electricity, energy, accumulator, charge, exclamation mark

func Beaker

func Beaker(opts ...Option) templ.Component

Beaker creates a beaker icon Tags: cup, lab, chemistry, experiment, test

func Bean

func Bean(opts ...Option) templ.Component

Bean creates a bean icon Tags: legume, soy, food, seed

func BeanOff

func BeanOff(opts ...Option) templ.Component

BeanOff creates a bean-off icon Tags: soy free, legume, soy, food, seed, allergy, intolerance, diet

func Bed

func Bed(opts ...Option) templ.Component

Bed creates a bed icon Tags: sleep, hotel, furniture

func BedDouble

func BedDouble(opts ...Option) templ.Component

BedDouble creates a bed-double icon Tags: sleep, hotel, furniture

func BedSingle

func BedSingle(opts ...Option) templ.Component

BedSingle creates a bed-single icon Tags: sleep, hotel, furniture

func Beef

func Beef(opts ...Option) templ.Component

Beef creates a beef icon Tags: food, dish, restaurant, course, meal, meat, bbq, steak

func Beer

func Beer(opts ...Option) templ.Component

Beer creates a beer icon Tags: alcohol, bar, beverage, brewery, drink

func BeerOff

func BeerOff(opts ...Option) templ.Component

BeerOff creates a beer-off icon Tags: alcohol, bar, beverage, brewery, drink

func Bell

func Bell(opts ...Option) templ.Component

Bell creates a bell icon Tags: alarm, notification, sound, reminder

func BellDot

func BellDot(opts ...Option) templ.Component

BellDot creates a bell-dot icon Tags: alarm, notification, sound, reminder, unread

func BellElectric

func BellElectric(opts ...Option) templ.Component

BellElectric creates a bell-electric icon Tags: fire alarm, flames, smoke, firefighter, fireman, department, brigade, station, emergency, alert, safety, school bell, period break, recess, doorbell, entrance, entry, ring, reception

func BellMinus

func BellMinus(opts ...Option) templ.Component

BellMinus creates a bell-minus icon Tags: alarm, notification, silent, reminder, delete, remove, erase

func BellOff

func BellOff(opts ...Option) templ.Component

BellOff creates a bell-off icon Tags: alarm, notification, silent, reminder

func BellPlus

func BellPlus(opts ...Option) templ.Component

BellPlus creates a bell-plus icon Tags: notification, silent, reminder, add, create, new

func BellRing

func BellRing(opts ...Option) templ.Component

BellRing creates a bell-ring icon Tags: alarm, notification, sound, reminder

func BetweenHorizontalEnd

func BetweenHorizontalEnd(opts ...Option) templ.Component

BetweenHorizontalEnd creates a between-horizontal-end icon Tags: insert, add, left, slot, squeeze, space, vertical, grid, table, rows, cells, excel, spreadsheet, accountancy, data, enter, entry, entries, blocks, rectangles, chevron

func BetweenHorizontalStart

func BetweenHorizontalStart(opts ...Option) templ.Component

BetweenHorizontalStart creates a between-horizontal-start icon Tags: insert, add, right, slot, squeeze, space, vertical, grid, table, rows, cells, excel, spreadsheet, accountancy, data, enter, entry, entries, blocks, rectangles, chevron

func BetweenVerticalEnd

func BetweenVerticalEnd(opts ...Option) templ.Component

BetweenVerticalEnd creates a between-vertical-end icon Tags: insert, add, top, slot, squeeze, space, vertical, grid, table, columns, cells, data, enter, entry, entries, blocks, rectangles, chevron

func BetweenVerticalStart

func BetweenVerticalStart(opts ...Option) templ.Component

BetweenVerticalStart creates a between-vertical-start icon Tags: insert, add, bottom, slot, squeeze, space, vertical, grid, table, columns, cells, data, enter, entry, entries, blocks, rectangles, chevron

func BicepsFlexed

func BicepsFlexed(opts ...Option) templ.Component

BicepsFlexed creates a biceps-flexed icon Tags: arm, muscle, strong, working out, athletic, toned, muscular, forelimb, curled

func Bike

func Bike(opts ...Option) templ.Component

Bike creates a bike icon Tags: bicycle, transport, trip

func Binary

func Binary(opts ...Option) templ.Component

Binary creates a binary icon Tags: code, digits, computer, zero, one, boolean

func Binoculars

func Binoculars(opts ...Option) templ.Component

Binoculars creates a binoculars icon Tags: field glasses, lorgnette, pince-nez, observation, sightseeing, nature, wildlife, birdwatching, scouting, surveillance, search, discovery, monitoring, lookout, viewpoint, travel, tourism, research

func Biohazard

func Biohazard(opts ...Option) templ.Component

Biohazard creates a biohazard icon Tags: fallout, waste, biology, chemistry, chemical, element

func Bird

func Bird(opts ...Option) templ.Component

Bird creates a bird icon Tags: peace, freedom, wing, avian, tweet

func Birdhouse

func Birdhouse(opts ...Option) templ.Component

Birdhouse creates a birdhouse icon Tags: birdhouse, bird, garden, home, house, woodwork

func Bitcoin

func Bitcoin(opts ...Option) templ.Component

Bitcoin creates a bitcoin icon Tags: currency, money, payment

func Blend

func Blend(opts ...Option) templ.Component

Blend creates a blend icon Tags: mode, overlay, multiply, screen, opacity, transparency, alpha, filters, lenses, mixed, shades, tints, hues, saturation, brightness, overlap, colors, colours

func Blinds

func Blinds(opts ...Option) templ.Component

Blinds creates a blinds icon Tags: shades, screen, curtain, shutter, roller blind, window, lighting, household, home

func Blocks

func Blocks(opts ...Option) templ.Component

Blocks creates a blocks icon Tags: addon, plugin, integration, extension, package, build, stack, toys, kids, children, learning, squares, corner

func Bluetooth

func Bluetooth(opts ...Option) templ.Component

Bluetooth creates a bluetooth icon Tags: wireless

func BluetoothConnected

func BluetoothConnected(opts ...Option) templ.Component

BluetoothConnected creates a bluetooth-connected icon Tags: paired

func BluetoothOff

func BluetoothOff(opts ...Option) templ.Component

BluetoothOff creates a bluetooth-off icon Tags: lost

func BluetoothSearching

func BluetoothSearching(opts ...Option) templ.Component

BluetoothSearching creates a bluetooth-searching icon Tags: pairing

func Bold

func Bold(opts ...Option) templ.Component

Bold creates a bold icon Tags: text, strong, format

func Bolt

func Bolt(opts ...Option) templ.Component

Bolt creates a bolt icon Tags: nut, screw, settings, preferences, configuration, controls, edit, diy, fixed, build, construction, parts

func Bomb

func Bomb(opts ...Option) templ.Component

Bomb creates a bomb icon Tags: fatal, error, crash, blockbuster, mine, explosion, explode, explosive

func Bone

func Bone(opts ...Option) templ.Component

Bone creates a bone icon Tags: health, skeleton, skull, death, pets, dog

func Book

func Book(opts ...Option) templ.Component

Book creates a book icon Tags: reading, paperback, booklet, magazine, leaflet, pamphlet, tome, library, writing, written, writer, author, story, script, fiction, novel, information, knowledge, education, high school, university, college, academy, student, study, learning, homework, research, documentation

func BookA

func BookA(opts ...Option) templ.Component

BookA creates a book-a icon Tags: dictionary, define, definition, thesaurus, encyclopedia, encyclopaedia, reading, booklet, magazine, leaflet, pamphlet, tome, library, writing, written, writer, author, story, script, fiction, novel, information, knowledge, education, high school, university, college, academy, student, study, learning, homework, research, language, translate, alphabetical, a-z, ordered

func BookAlert

func BookAlert(opts ...Option) templ.Component

BookAlert creates a book-alert icon Tags: reading, paperback, booklet, magazine, leaflet, pamphlet, tome, library, writing, written, writer, author, story, script, fiction, novel, information, knowledge, education, high school, university, college, academy, student, study, learning, homework, research, documentation, warning, alert, danger, exclamation mark

func BookAudio

func BookAudio(opts ...Option) templ.Component

BookAudio creates a book-audio icon Tags: audiobook, reading, listening, sound, story, fiction, novel, information, knowledge, education, student, study, learning, research

func BookCheck

func BookCheck(opts ...Option) templ.Component

BookCheck creates a book-check icon Tags: read, booklet, magazine, leaflet, pamphlet, library, written, authored, published, informed, knowledgeable, educated, schooled, homework, examined, tested, marked, passed, graduated, studied, learned, lesson, researched, documented, revealed, blank, plain language, true, truth, verified, corrected, task, todo, done, completed, finished, ticked

func BookCopy

func BookCopy(opts ...Option) templ.Component

BookCopy creates a book-copy icon Tags: code, coding, version control, git, repository, clone, fork, duplicate, multiple, books, library, copies, copied, plagiarism, plagiarised, plagiarized, reading list, information, informed, knowledge, knowledgeable, knowledgable, education, high school, university, college, academy, student, study, learning, research, smart, intelligent, intellectual

func BookDashed

func BookDashed(opts ...Option) templ.Component

BookDashed creates a book-dashed icon Tags: code, coding, version control, git, repository, template, draft, script, screenplay, writing, writer, author, unwritten, unpublished, untold

func BookDown

func BookDown(opts ...Option) templ.Component

BookDown creates a book-down icon Tags: code, coding, version control, git, repository, pull

func BookHeadphones

func BookHeadphones(opts ...Option) templ.Component

BookHeadphones creates a book-headphones icon Tags: audiobook, reading, listening, sound, story, fiction, novel, information, knowledge, education, student, study, learning, research

func BookHeart

func BookHeart(opts ...Option) templ.Component

BookHeart creates a book-heart icon Tags: diary, romance, novel, journal, entry, entries, personal, private, secret, crush, like, love, emotion, feminine, girls, teens, teenager, therapy, theraputic, therapist, planner, organizer, organiser, notes, notepad, stationery, sketchbook, writing, written, reading, favorite, favourite, high school

func BookImage

func BookImage(opts ...Option) templ.Component

BookImage creates a book-image icon Tags: images, pictures, photos, album, collection, event, magazine, catalog, catalogue, brochure, browse, gallery

func BookKey

func BookKey(opts ...Option) templ.Component

BookKey creates a book-key icon Tags: code, coding, version control, git, repository, private, public, secret, unlocked, hidden, revealed, knowledge, learning

func BookLock

func BookLock(opts ...Option) templ.Component

BookLock creates a book-lock icon Tags: code, coding, version control, git, repository, private, secret, hidden, knowledge

func BookMarked

func BookMarked(opts ...Option) templ.Component

BookMarked creates a book-marked icon Tags: dictionary, reading, booklet, magazine, leaflet, pamphlet, tome, library, writing, written, writer, author, story, script, fiction, novel, information, knowledge, education, high school, university, college, academy, student, study, learning, homework, research, documentation, saved, later, future, reference, index, code, coding, version control, git, repository

func BookMinus

func BookMinus(opts ...Option) templ.Component

BookMinus creates a book-minus icon Tags: code, coding, version control, git, repository, remove, delete, censor, cancel, forbid, prohibit, ban, uneducated, re-educate, unlearn, downgrade

func BookOpen

func BookOpen(opts ...Option) templ.Component

BookOpen creates a book-open icon Tags: reading, pages, booklet, magazine, leaflet, pamphlet, library, writing, written, writer, author, story, script, screenplay, fiction, novel, information, knowledge, education, high school, university, college, academy, student, study, learning, homework, research, documentation, revealed, blank, plain

func BookOpenCheck

func BookOpenCheck(opts ...Option) templ.Component

BookOpenCheck creates a book-open-check icon Tags: read, pages, booklet, magazine, leaflet, pamphlet, library, written, authored, published, informed, knowledgeable, educated, schooled, homework, examined, tested, marked, passed, graduated, studied, learned, lesson, researched, documented, revealed, blank, plain language, true, truth, verified, corrected, task, todo, done, completed, finished, ticked

func BookOpenText

func BookOpenText(opts ...Option) templ.Component

BookOpenText creates a book-open-text icon Tags: reading, pages, booklet, magazine, leaflet, pamphlet, library, writing, written, writer, author, story, script, fiction, novel, information, knowledge, education, high school, university, college, academy, student, study, learning, homework, research, documentation, revealed

func BookPlus

func BookPlus(opts ...Option) templ.Component

BookPlus creates a book-plus icon Tags: code, coding, version control, git, repository, remove, delete, read, write, author, publish, inform, graduate, re-educate, study, learn, research, knowledge, improve, upgrade, level up

func BookSearch

func BookSearch(opts ...Option) templ.Component

BookSearch creates a book-search icon Tags: reading, library, study, education, research, knowledge, discover, browsing, lookup, finding, scanning

func BookText

func BookText(opts ...Option) templ.Component

BookText creates a book-text icon Tags: reading, booklet, magazine, leaflet, pamphlet, tome, library, writing, written, writer, author, story, script, fiction, novel, information, knowledge, education, high school, university, college, academy, student, study, learning, homework, research, documentation

func BookType

func BookType(opts ...Option) templ.Component

BookType creates a book-type icon Tags: thesaurus, synonym, reading, booklet, magazine, leaflet, pamphlet, tome, library, writing, written, writer, author, story, script, fiction, novel, information, knowledge, education, high school, university, college, academy, student, study, learning, homework, research, language, translate, typography, fonts, collection

func BookUp

func BookUp(opts ...Option) templ.Component

BookUp creates a book-up icon Tags: code, coding, version control, git, repository, push

func BookUp2

func BookUp2(opts ...Option) templ.Component

BookUp2 creates a book-up-2 icon Tags: code, coding, version control, git, repository, push, force

func BookUser

func BookUser(opts ...Option) templ.Component

BookUser creates a book-user icon Tags: person, people, family, friends, acquaintances, contacts, details, addresses, phone numbers, directory, listing, networking

func BookX

func BookX(opts ...Option) templ.Component

BookX creates a book-x icon Tags: code, coding, version control, git, repository, remove, delete, reading, misinformation, disinformation, misinformed, charlatan, sophistry, false, lies, untruth, propaganda, censored, cancelled, forbidden, prohibited, banned, uneducated, re-education, unlearn

func Bookmark

func Bookmark(opts ...Option) templ.Component

Bookmark creates a bookmark icon Tags: read, clip, marker, tag

func BookmarkCheck

func BookmarkCheck(opts ...Option) templ.Component

BookmarkCheck creates a bookmark-check icon Tags: read, finished, complete, clip, marker, tag, task, todo

func BookmarkMinus

func BookmarkMinus(opts ...Option) templ.Component

BookmarkMinus creates a bookmark-minus icon Tags: delete, remove

func BookmarkPlus

func BookmarkPlus(opts ...Option) templ.Component

BookmarkPlus creates a bookmark-plus icon Tags: add

func BookmarkX

func BookmarkX(opts ...Option) templ.Component

BookmarkX creates a bookmark-x icon Tags: read, clip, marker, tag, cancel, close, delete, remove, clear

func BoomBox

func BoomBox(opts ...Option) templ.Component

BoomBox creates a boom-box icon Tags: radio, speakers, audio, music, sound, broadcast, live, frequency

func Bot

func Bot(opts ...Option) templ.Component

Bot creates a bot icon Tags: robot, ai, chat, assistant

func BotMessageSquare

func BotMessageSquare(opts ...Option) templ.Component

BotMessageSquare creates a bot-message-square icon Tags: robot, ai, chat, assistant

func BotOff

func BotOff(opts ...Option) templ.Component

BotOff creates a bot-off icon Tags: robot, ai, chat, assistant

func BottleWine

func BottleWine(opts ...Option) templ.Component

BottleWine creates a bottle-wine icon Tags: alcohol, drink, glass, goblet, chalice, vineyard, winery, red, white, rose, dry, sparkling, bar, party, nightclub, nightlife, sommelier, restaurant, dinner, meal

func BowArrow

func BowArrow(opts ...Option) templ.Component

BowArrow creates a bow-arrow icon Tags: archer, archery, game, war, weapon

func Box

func Box(opts ...Option) templ.Component

Box creates a box icon Tags: cube, package, container, storage, geometry, 3d, isometric

func Boxes

func Boxes(opts ...Option) templ.Component

Boxes creates a boxes icon Tags: cubes, packages, parts, group, units, collection, cluster, geometry

func Braces

func Braces(opts ...Option) templ.Component

Braces creates a braces icon Tags: json, code, token, curly brackets, data, {, }

func Brackets

func Brackets(opts ...Option) templ.Component

Brackets creates a brackets icon Tags: code, token, array, list, square, [, ]

func Brain

func Brain(opts ...Option) templ.Component

Brain creates a brain icon Tags: medical, mind, mental, intellect, cerebral, consciousness, genius, artificial intelligence, ai, think, thought, insight, intelligent, smart

func BrainCircuit

func BrainCircuit(opts ...Option) templ.Component

BrainCircuit creates a brain-circuit icon Tags: mind, intellect, artificial intelligence, ai, deep learning, machine learning, computing

func BrainCog

func BrainCog(opts ...Option) templ.Component

BrainCog creates a brain-cog icon Tags: mind, intellect, artificial intelligence, ai, deep learning, machine learning, computing

func BrickWall

func BrickWall(opts ...Option) templ.Component

BrickWall creates a brick-wall icon Tags: bricks, mortar, cement, materials, construction, builder, labourer, quantity surveyor, blocks, stone

func BrickWallFire

func BrickWallFire(opts ...Option) templ.Component

BrickWallFire creates a brick-wall-fire icon Tags: firewall, security, bricks, mortar, cement, materials, construction, builder, labourer, quantity surveyor, blocks, stone, campfire, camping, wilderness, outdoors, lit, warmth, wood, twigs, sticks

func BrickWallShield

func BrickWallShield(opts ...Option) templ.Component

BrickWallShield creates a brick-wall-shield icon Tags: firewall, security, bricks, mortar, cement, materials, construction, builder, labourer, quantity surveyor, blocks, stone, cybersecurity, secure, safety, protection, guardian, armored, armoured, defense, defence, defender, block, threat, prevention, antivirus, vigilance, vigilant, detection, scan, find, strength, strong, tough, invincible, invincibility, invulnerable, undamaged, audit, admin, verification, crest, bravery, knight, foot soldier, infantry, trooper, pawn, battle, war, military, army, cadet, scout

func Briefcase

func Briefcase(opts ...Option) templ.Component

Briefcase creates a briefcase icon Tags: work, bag, baggage, folder

func BriefcaseBusiness

func BriefcaseBusiness(opts ...Option) templ.Component

BriefcaseBusiness creates a briefcase-business icon Tags: work, bag, baggage, folder, portfolio

func BriefcaseConveyorBelt

func BriefcaseConveyorBelt(opts ...Option) templ.Component

BriefcaseConveyorBelt creates a briefcase-conveyor-belt icon Tags: baggage, luggage, travel, suitcase, conveyor, carousel

func BriefcaseMedical

func BriefcaseMedical(opts ...Option) templ.Component

BriefcaseMedical creates a briefcase-medical icon Tags: doctor, medicine, first aid

func BringToFront

func BringToFront(opts ...Option) templ.Component

BringToFront creates a bring-to-front icon Tags: bring, send, move, over, forward, front, overlap, layer, order

func Brush

func Brush(opts ...Option) templ.Component

Brush creates a brush icon Tags: clean, sweep, refactor, remove, draw, paint, color, artist

func BrushCleaning

func BrushCleaning(opts ...Option) templ.Component

BrushCleaning creates a brush-cleaning icon Tags: cleaning, utensil, housekeeping, tool, sweeping, scrubbing, hygiene, maintenance, household, cleaner, chores, equipment, sanitation, bristles, handle, home care, sanitize, purify, wash, disinfect, sterilize, scrub, polish, decontaminate, wipe, spotless, remove, empty, erase, purge, eliminate

func Bubbles

func Bubbles(opts ...Option) templ.Component

Bubbles creates a bubbles icon Tags: water, cleaning, soap, bath, hygiene, freshness, wash, foam, cleanliness, shampoo, purity, splash, lightness, airy, relaxation, spa, bubbly, fluid, floating, drop

func Bug

func Bug(opts ...Option) templ.Component

Bug creates a bug icon Tags: issue, error, defect, testing, troubleshoot, problem, report, debug, code, insect, beetle

func BugOff

func BugOff(opts ...Option) templ.Component

BugOff creates a bug-off icon Tags: issue, fixed, resolved, testing, debug, code, insect, kill, exterminate, pest control

func BugPlay

func BugPlay(opts ...Option) templ.Component

BugPlay creates a bug-play icon Tags: issue, testing, debug, reproduce, code, insect

func Building

func Building(opts ...Option) templ.Component

Building creates a building icon Tags: organisation, organization

func Building2

func Building2(opts ...Option) templ.Component

Building2 creates a building-2 icon Tags: business, company, enterprise, skyscraper, organisation, organization, city

func Bus

func Bus(opts ...Option) templ.Component

Bus creates a bus icon Tags: bus, vehicle, transport, trip

func BusFront

func BusFront(opts ...Option) templ.Component

BusFront creates a bus-front icon Tags: coach, vehicle, trip, road

func Cable

func Cable(opts ...Option) templ.Component

Cable creates a cable icon Tags: cord, wire, connector, connection, link, signal, console, computer, equipment, electricity, energy, electronics, recharging, charger, power, supply, disconnected, unplugged, plugs, interface, input, output, audio video, av, rca, scart, tv, television, optical

func CableCar

func CableCar(opts ...Option) templ.Component

CableCar creates a cable-car icon Tags: ski lift, winter holiday, alpine, resort, mountains

func Cake

func Cake(opts ...Option) templ.Component

Cake creates a cake icon Tags: birthday, birthdate, celebration, party, surprise, gateaux, dessert, fondant, icing sugar, sweet, baking

func CakeSlice

func CakeSlice(opts ...Option) templ.Component

CakeSlice creates a cake-slice icon Tags: birthday, birthdate, celebration, party, surprise, gateaux, dessert, candles, wish, fondant, icing sugar, sweet, baking

func Calculator

func Calculator(opts ...Option) templ.Component

Calculator creates a calculator icon Tags: count, calculating machine

func Calendar

func Calendar(opts ...Option) templ.Component

Calendar creates a calendar icon Tags: date, month, year, event, birthday, birthdate

func Calendar1

func Calendar1(opts ...Option) templ.Component

Calendar1 creates a calendar-1 icon Tags: date, month, year, event, single, singular, once, 1, first

func CalendarArrowDown

func CalendarArrowDown(opts ...Option) templ.Component

CalendarArrowDown creates a calendar-arrow-down icon Tags: date, month, year, event, sort, order, ascending, descending, increasing, decreasing, rising, falling

func CalendarArrowUp

func CalendarArrowUp(opts ...Option) templ.Component

CalendarArrowUp creates a calendar-arrow-up icon Tags: date, month, year, event, sort, order, ascending, descending, increasing, decreasing, rising, falling

func CalendarCheck

func CalendarCheck(opts ...Option) templ.Component

CalendarCheck creates a calendar-check icon Tags: date, day, month, year, event, confirm, subscribe, schedule, done, todo, tick, complete, task

func CalendarCheck2

func CalendarCheck2(opts ...Option) templ.Component

CalendarCheck2 creates a calendar-check-2 icon Tags: date, day, month, year, event, confirm, subscribe, schedule, done, todo, tick, complete, task

func CalendarClock

func CalendarClock(opts ...Option) templ.Component

CalendarClock creates a calendar-clock icon Tags: date, day, month, year, event, clock, hour

func CalendarCog

func CalendarCog(opts ...Option) templ.Component

CalendarCog creates a calendar-cog icon Tags: date, day, month, year, events, settings, gear, cog

func CalendarDays

func CalendarDays(opts ...Option) templ.Component

CalendarDays creates a calendar-days icon Tags: date, month, year, event

func CalendarFold

func CalendarFold(opts ...Option) templ.Component

CalendarFold creates a calendar-fold icon Tags: date, month, year, event, birthday, birthdate, ics

func CalendarHeart

func CalendarHeart(opts ...Option) templ.Component

CalendarHeart creates a calendar-heart icon Tags: date, month, year, event, heart, favourite, subscribe, valentines day

func CalendarMinus

func CalendarMinus(opts ...Option) templ.Component

CalendarMinus creates a calendar-minus icon Tags: date, day, month, year, event, delete, remove

func CalendarMinus2

func CalendarMinus2(opts ...Option) templ.Component

CalendarMinus2 creates a calendar-minus-2 icon Tags: date, day, month, year, event, delete, remove

func CalendarOff

func CalendarOff(opts ...Option) templ.Component

CalendarOff creates a calendar-off icon Tags: date, day, month, year, event, delete, remove

func CalendarPlus

func CalendarPlus(opts ...Option) templ.Component

CalendarPlus creates a calendar-plus icon Tags: date, day, month, year, event, add, subscribe, create, new

func CalendarPlus2

func CalendarPlus2(opts ...Option) templ.Component

CalendarPlus2 creates a calendar-plus-2 icon Tags: date, day, month, year, event, add, subscribe, create, new

func CalendarRange

func CalendarRange(opts ...Option) templ.Component

CalendarRange creates a calendar-range icon Tags: date, day, month, year, event, range, period

func CalendarSearch

func CalendarSearch(opts ...Option) templ.Component

CalendarSearch creates a calendar-search icon Tags: date, day, month, year, events, search, lens

func CalendarSync

func CalendarSync(opts ...Option) templ.Component

CalendarSync creates a calendar-sync icon Tags: repeat, refresh, reconnect, transfer, backup, date, month, year, event, subscribe, recurring, schedule, reminder, automatic, auto

func CalendarX

func CalendarX(opts ...Option) templ.Component

CalendarX creates a calendar-x icon Tags: date, day, month, year, event, remove, busy

func CalendarX2

func CalendarX2(opts ...Option) templ.Component

CalendarX2 creates a calendar-x-2 icon Tags: date, day, month, year, event, remove

func Calendars

func Calendars(opts ...Option) templ.Component

Calendars creates a calendars icon Tags: date, month, year, event, dates, months, years, events

func Camera

func Camera(opts ...Option) templ.Component

Camera creates a camera icon Tags: photography, lens, focus, capture, shot, visual, image, device, equipment, photo, webcam, video

func CameraOff

func CameraOff(opts ...Option) templ.Component

CameraOff creates a camera-off icon Tags: photo, webcam, video

func Candy

func Candy(opts ...Option) templ.Component

Candy creates a candy icon Tags: sugar, food, sweet

func CandyCane

func CandyCane(opts ...Option) templ.Component

CandyCane creates a candy-cane icon Tags: sugar, food, sweet, christmas, xmas

func CandyOff

func CandyOff(opts ...Option) templ.Component

CandyOff creates a candy-off icon Tags: sugar free, food, sweet, allergy, intolerance, diet

func Cannabis

func Cannabis(opts ...Option) templ.Component

Cannabis creates a cannabis icon Tags: cannabis, weed, leaf

func CannabisOff

func CannabisOff(opts ...Option) templ.Component

CannabisOff creates a cannabis-off icon Tags: cannabis, weed, leaf

func Captions

func Captions(opts ...Option) templ.Component

Captions creates a captions icon Tags: closed captions, subtitles, subhead, transcription, transcribe, dialogue, accessibility

func CaptionsOff

func CaptionsOff(opts ...Option) templ.Component

CaptionsOff creates a captions-off icon Tags: closed captions, subtitles, subhead, transcription, transcribe, dialogue, accessibility

func Car

func Car(opts ...Option) templ.Component

Car creates a car icon Tags: vehicle, drive, trip, journey

func CarFront

func CarFront(opts ...Option) templ.Component

CarFront creates a car-front icon Tags: vehicle, drive, trip, journey

func CarTaxiFront

func CarTaxiFront(opts ...Option) templ.Component

CarTaxiFront creates a car-taxi-front icon Tags: cab, vehicle, drive, trip, journey

func Caravan

func Caravan(opts ...Option) templ.Component

Caravan creates a caravan icon Tags: trailer, tow, camping, campsite, mobile home, holiday, nomadic, wilderness, outdoors

func CardSim

func CardSim(opts ...Option) templ.Component

CardSim creates a card-sim icon Tags: cellphone, smartphone, mobile, network, cellular, service, provider, signal, coverage, disk, data, format, storage, flash, digital, contacts, phone book, contractual, circuit board, chip

func Carrot

func Carrot(opts ...Option) templ.Component

Carrot creates a carrot icon Tags: vegetable, food, eat

func CaseLower

func CaseLower(opts ...Option) templ.Component

CaseLower creates a case-lower icon Tags: text, letters, characters, font, typography

func CaseSensitive

func CaseSensitive(opts ...Option) templ.Component

CaseSensitive creates a case-sensitive icon Tags: text, letters, characters, font, typography

func CaseUpper

func CaseUpper(opts ...Option) templ.Component

CaseUpper creates a case-upper icon Tags: text, letters, characters, font, typography

func CassetteTape

func CassetteTape(opts ...Option) templ.Component

CassetteTape creates a cassette-tape icon Tags: audio, music, recording, play

func Cast

func Cast(opts ...Option) templ.Component

Cast creates a cast icon Tags: chromecast, airplay, screen

func Castle

func Castle(opts ...Option) templ.Component

Castle creates a castle icon Tags: fortress, stronghold, palace, chateau, building

func Cat

func Cat(opts ...Option) templ.Component

Cat creates a cat icon Tags: animal, pet, kitten, feline

func Cctv

func Cctv(opts ...Option) templ.Component

Cctv creates a cctv icon Tags: camera, surveillance, recording, film, videotape, crime, watching

func ChartArea

func ChartArea(opts ...Option) templ.Component

ChartArea creates a chart-area icon Tags: statistics, analytics, diagram, graph, area

func ChartBar

func ChartBar(opts ...Option) templ.Component

ChartBar creates a chart-bar icon Tags: statistics, analytics, diagram, graph

func ChartBarBig

func ChartBarBig(opts ...Option) templ.Component

ChartBarBig creates a chart-bar-big icon Tags: statistics, analytics, diagram, graph

func ChartBarDecreasing

func ChartBarDecreasing(opts ...Option) templ.Component

ChartBarDecreasing creates a chart-bar-decreasing icon Tags: statistics, analytics, diagram, graph, trending down

func ChartBarIncreasing

func ChartBarIncreasing(opts ...Option) templ.Component

ChartBarIncreasing creates a chart-bar-increasing icon Tags: statistics, analytics, diagram, graph, trending up

func ChartBarStacked

func ChartBarStacked(opts ...Option) templ.Component

ChartBarStacked creates a chart-bar-stacked icon Tags: statistics, analytics, diagram, graph, multivariate, categorical, comparison

func ChartCandlestick

func ChartCandlestick(opts ...Option) templ.Component

ChartCandlestick creates a chart-candlestick icon Tags: trading, trader, financial, markets, portfolio, assets, prices, value, valuation, commodities, currencies, currency, stocks, exchange, hedge fund, statistics, analytics, diagram, graph

func ChartColumn

func ChartColumn(opts ...Option) templ.Component

ChartColumn creates a chart-column icon Tags: statistics, analytics, diagram, graph

func ChartColumnBig

func ChartColumnBig(opts ...Option) templ.Component

ChartColumnBig creates a chart-column-big icon Tags: statistics, analytics, diagram, graph

func ChartColumnDecreasing

func ChartColumnDecreasing(opts ...Option) templ.Component

ChartColumnDecreasing creates a chart-column-decreasing icon Tags: statistics, analytics, diagram, graph, trending down

func ChartColumnIncreasing

func ChartColumnIncreasing(opts ...Option) templ.Component

ChartColumnIncreasing creates a chart-column-increasing icon Tags: statistics, analytics, diagram, graph, trending up

func ChartColumnStacked

func ChartColumnStacked(opts ...Option) templ.Component

ChartColumnStacked creates a chart-column-stacked icon Tags: statistics, analytics, diagram, graph, multivariate, categorical, comparison

func ChartGantt

func ChartGantt(opts ...Option) templ.Component

ChartGantt creates a chart-gantt icon Tags: diagram, graph, timeline, planning

func ChartLine

func ChartLine(opts ...Option) templ.Component

ChartLine creates a chart-line icon Tags: statistics, analytics, diagram, graph

func ChartNetwork

func ChartNetwork(opts ...Option) templ.Component

ChartNetwork creates a chart-network icon Tags: statistics, analytics, diagram, graph, topology, cluster, web, nodes, connections, edges

func ChartNoAxesColumn

func ChartNoAxesColumn(opts ...Option) templ.Component

ChartNoAxesColumn creates a chart-no-axes-column icon Tags: statistics, analytics, diagram, graph

func ChartNoAxesColumnDecreasing

func ChartNoAxesColumnDecreasing(opts ...Option) templ.Component

ChartNoAxesColumnDecreasing creates a chart-no-axes-column-decreasing icon Tags: statistics, analytics, diagram, graph, trending down

func ChartNoAxesColumnIncreasing

func ChartNoAxesColumnIncreasing(opts ...Option) templ.Component

ChartNoAxesColumnIncreasing creates a chart-no-axes-column-increasing icon Tags: statistics, analytics, diagram, graph, trending up

func ChartNoAxesCombined

func ChartNoAxesCombined(opts ...Option) templ.Component

ChartNoAxesCombined creates a chart-no-axes-combined icon Tags: statistics, analytics, diagram, graph, trending up

func ChartNoAxesGantt

func ChartNoAxesGantt(opts ...Option) templ.Component

ChartNoAxesGantt creates a chart-no-axes-gantt icon Tags: projects, manage, overview, roadmap, plan, intentions, timeline, deadline, date, event, range, period, productivity, work, agile, code, coding

func ChartPie

func ChartPie(opts ...Option) templ.Component

ChartPie creates a chart-pie icon Tags: statistics, analytics, diagram, presentation

func ChartScatter

func ChartScatter(opts ...Option) templ.Component

ChartScatter creates a chart-scatter icon Tags: statistics, analytics, diagram, graph

func ChartSpline

func ChartSpline(opts ...Option) templ.Component

ChartSpline creates a chart-spline icon Tags: statistics, analytics, diagram, graph, curve, continuous, smooth, polynomial, quadratic, function, interpolation

func Check

func Check(opts ...Option) templ.Component

Check creates a check icon Tags: done, todo, tick, complete, task

func CheckCheck

func CheckCheck(opts ...Option) templ.Component

CheckCheck creates a check-check icon Tags: done, received, double, todo, tick, complete, task

func CheckCircle

func CheckCircle(opts ...Option) templ.Component

CheckCircle creates a success/check icon with a circle (alias for CircleCheck)

func CheckLine

func CheckLine(opts ...Option) templ.Component

CheckLine creates a check-line icon Tags: done, todo, tick, complete, task

func ChefHat

func ChefHat(opts ...Option) templ.Component

ChefHat creates a chef-hat icon Tags: cooking, food, kitchen, restaurant

func Cherry

func Cherry(opts ...Option) templ.Component

Cherry creates a cherry icon Tags: fruit, food

func ChessBishop

func ChessBishop(opts ...Option) templ.Component

ChessBishop creates a chess-bishop icon Tags: mitre, miter, piece, board game, religion

func ChessKing

func ChessKing(opts ...Option) templ.Component

ChessKing creates a chess-king icon Tags: ruler, crown, piece, board game, stalemate

func ChessKnight

func ChessKnight(opts ...Option) templ.Component

ChessKnight creates a chess-knight icon Tags: piece, horse, board game

func ChessPawn

func ChessPawn(opts ...Option) templ.Component

ChessPawn creates a chess-pawn icon Tags: piece, board game

func ChessQueen

func ChessQueen(opts ...Option) templ.Component

ChessQueen creates a chess-queen icon Tags: ruler, crown, piece, board game, stalemate

func ChessRook

func ChessRook(opts ...Option) templ.Component

ChessRook creates a chess-rook icon Tags: castle, piece, board game

func ChevronDown

func ChevronDown(opts ...Option) templ.Component

ChevronDown creates a chevron-down icon Tags: backwards, reverse, slow, dropdown

func ChevronFirst

func ChevronFirst(opts ...Option) templ.Component

ChevronFirst creates a chevron-first icon Tags: previous, music

func ChevronLast

func ChevronLast(opts ...Option) templ.Component

ChevronLast creates a chevron-last icon Tags: skip, next, music

func ChevronLeft

func ChevronLeft(opts ...Option) templ.Component

ChevronLeft creates a chevron-left icon Tags: back, previous, less than, fewer, menu, <

func ChevronRight

func ChevronRight(opts ...Option) templ.Component

ChevronRight creates a chevron-right icon Tags: forward, next, more than, greater, menu, code, coding, command line, terminal, prompt, shell, >

func ChevronUp

func ChevronUp(opts ...Option) templ.Component

ChevronUp creates a chevron-up icon Tags: caret, keyboard, mac, control, ctrl, superscript, exponential, power, ahead, fast, ^, dropdown

func ChevronsDown

func ChevronsDown(opts ...Option) templ.Component

ChevronsDown creates a chevrons-down icon Tags: backwards, reverse, slower

func ChevronsDownUp

func ChevronsDownUp(opts ...Option) templ.Component

ChevronsDownUp creates a chevrons-down-up icon Tags: collapse, fold, vertical

func ChevronsLeft

func ChevronsLeft(opts ...Option) templ.Component

ChevronsLeft creates a chevrons-left icon Tags: turn, corner

func ChevronsLeftRight

func ChevronsLeftRight(opts ...Option) templ.Component

ChevronsLeftRight creates a chevrons-left-right icon Tags: expand, horizontal, unfold

func ChevronsLeftRightEllipsis

func ChevronsLeftRightEllipsis(opts ...Option) templ.Component

ChevronsLeftRightEllipsis creates a chevrons-left-right-ellipsis icon Tags: internet, network, connection, cable, lan, port, router, switch, hub, modem, web, online, networking, communication, socket, plug, slot, controller, connector, interface, console, signal, data, input, output

func ChevronsRight

func ChevronsRight(opts ...Option) templ.Component

ChevronsRight creates a chevrons-right icon Tags: turn, corner

func ChevronsRightLeft

func ChevronsRightLeft(opts ...Option) templ.Component

ChevronsRightLeft creates a chevrons-right-left icon Tags: collapse, fold, horizontal

func ChevronsUp

func ChevronsUp(opts ...Option) templ.Component

ChevronsUp creates a chevrons-up icon Tags: forward, ahead, faster, speed, boost

func ChevronsUpDown

func ChevronsUpDown(opts ...Option) templ.Component

ChevronsUpDown creates a chevrons-up-down icon Tags: expand, unfold, vertical

func Chromium

func Chromium(opts ...Option) templ.Component

Chromium creates a chromium icon Tags: browser, logo

func Church

func Church(opts ...Option) templ.Component

Church creates a church icon Tags: temple, building

func Cigarette

func Cigarette(opts ...Option) templ.Component

Cigarette creates a cigarette icon Tags: smoking

func CigaretteOff

func CigaretteOff(opts ...Option) templ.Component

CigaretteOff creates a cigarette-off icon Tags: smoking, no-smoking

func Circle

func Circle(opts ...Option) templ.Component

Circle creates a circle icon Tags: off, zero, record, shape

func CircleAlert

func CircleAlert(opts ...Option) templ.Component

CircleAlert creates a circle-alert icon Tags: warning, alert, danger, exclamation mark

func CircleArrowDown

func CircleArrowDown(opts ...Option) templ.Component

CircleArrowDown creates a circle-arrow-down icon Tags: backwards, reverse, direction, south, sign, button

func CircleArrowLeft

func CircleArrowLeft(opts ...Option) templ.Component

CircleArrowLeft creates a circle-arrow-left icon Tags: previous, back, direction, west, sign, turn, button, <-

func CircleArrowOutDownLeft

func CircleArrowOutDownLeft(opts ...Option) templ.Component

CircleArrowOutDownLeft creates a circle-arrow-out-down-left icon Tags: outwards, direction, south-west, diagonal

func CircleArrowOutDownRight

func CircleArrowOutDownRight(opts ...Option) templ.Component

CircleArrowOutDownRight creates a circle-arrow-out-down-right icon Tags: outwards, direction, south-east, diagonal

func CircleArrowOutUpLeft

func CircleArrowOutUpLeft(opts ...Option) templ.Component

CircleArrowOutUpLeft creates a circle-arrow-out-up-left icon Tags: outwards, direction, north-west, diagonal, keyboard, button, escape

func CircleArrowOutUpRight

func CircleArrowOutUpRight(opts ...Option) templ.Component

CircleArrowOutUpRight creates a circle-arrow-out-up-right icon Tags: outwards, direction, north-east, diagonal

func CircleArrowRight

func CircleArrowRight(opts ...Option) templ.Component

CircleArrowRight creates a circle-arrow-right icon Tags: next, forward, direction, east, sign, turn, button, ->

func CircleArrowUp

func CircleArrowUp(opts ...Option) templ.Component

CircleArrowUp creates a circle-arrow-up icon Tags: forward, direction, north, sign, button

func CircleCheck

func CircleCheck(opts ...Option) templ.Component

CircleCheck creates a circle-check icon Tags: done, todo, tick, complete, task

func CircleCheckBig

func CircleCheckBig(opts ...Option) templ.Component

CircleCheckBig creates a circle-check-big icon Tags: done, todo, tick, complete, task

func CircleChevronDown

func CircleChevronDown(opts ...Option) templ.Component

CircleChevronDown creates a circle-chevron-down icon Tags: back, menu

func CircleChevronLeft

func CircleChevronLeft(opts ...Option) templ.Component

CircleChevronLeft creates a circle-chevron-left icon Tags: back, previous, less than, fewer, menu, <

func CircleChevronRight

func CircleChevronRight(opts ...Option) templ.Component

CircleChevronRight creates a circle-chevron-right icon Tags: back, more than, greater, menu, >

func CircleChevronUp

func CircleChevronUp(opts ...Option) templ.Component

CircleChevronUp creates a circle-chevron-up icon Tags: caret, ahead, menu, ^

func CircleDashed

func CircleDashed(opts ...Option) templ.Component

CircleDashed creates a circle-dashed icon Tags: pending, dot, progress, issue, draft, code, coding, version control

func CircleDivide

func CircleDivide(opts ...Option) templ.Component

CircleDivide creates a circle-divide icon Tags: calculate, math, ÷, /

func CircleDollarSign

func CircleDollarSign(opts ...Option) templ.Component

CircleDollarSign creates a circle-dollar-sign icon Tags: monetization, marketing, currency, money, payment

func CircleDot

func CircleDot(opts ...Option) templ.Component

CircleDot creates a circle-dot icon Tags: pending, dot, progress, issue, code, coding, version control, choices, multiple choice, choose

func CircleDotDashed

func CircleDotDashed(opts ...Option) templ.Component

CircleDotDashed creates a circle-dot-dashed icon Tags: pending, dot, progress, issue, draft, code, coding, version control

func CircleEllipsis

func CircleEllipsis(opts ...Option) templ.Component

CircleEllipsis creates a circle-ellipsis icon Tags: ellipsis, et cetera, etc, loader, loading, progress, pending, throbber, menu, options, operator, code, spread, rest, more, further, extra, overflow, dots, …, ...

func CircleEqual

func CircleEqual(opts ...Option) templ.Component

CircleEqual creates a circle-equal icon Tags: calculate, shape, =

func CircleFadingArrowUp

func CircleFadingArrowUp(opts ...Option) templ.Component

CircleFadingArrowUp creates a circle-fading-arrow-up icon Tags: north, up, upgrade, improve, circle, button

func CircleFadingPlus

func CircleFadingPlus(opts ...Option) templ.Component

CircleFadingPlus creates a circle-fading-plus icon Tags: stories, social media, instagram, facebook, meta, snapchat, sharing, content

func CircleGauge

func CircleGauge(opts ...Option) templ.Component

CircleGauge creates a circle-gauge icon Tags: dashboard, dial, meter, speed, pressure, measure, level

func CircleMinus

func CircleMinus(opts ...Option) templ.Component

CircleMinus creates a circle-minus icon Tags: subtract, remove, decrease, reduce, calculate, line, operator, code, coding, minimum, downgrade, -

func CircleOff

func CircleOff(opts ...Option) templ.Component

CircleOff creates a circle-off icon Tags: diameter, zero, Ø, nothing, null, void, cancel, ban, no, stop, forbidden, prohibited, error, incorrect, mistake, wrong, failure

func CircleParking

func CircleParking(opts ...Option) templ.Component

CircleParking creates a circle-parking icon Tags: parking lot, car park

func CircleParkingOff

func CircleParkingOff(opts ...Option) templ.Component

CircleParkingOff creates a circle-parking-off icon Tags: parking lot, car park, no parking

func CirclePause

func CirclePause(opts ...Option) templ.Component

CirclePause creates a circle-pause icon Tags: music, audio, stop

func CirclePercent

func CirclePercent(opts ...Option) templ.Component

CirclePercent creates a circle-percent icon Tags: verified, unverified, sale, discount, offer, marketing, sticker, price tag

func CirclePile

func CirclePile(opts ...Option) templ.Component

CirclePile creates a circle-pile icon Tags: off, zero, record, shape, circle-pile, circle, pile, stack, layer, structure, form, group, collection, stock, inventory, materials, warehouse

func CirclePlay

func CirclePlay(opts ...Option) templ.Component

CirclePlay creates a circle-play icon Tags: music, start, run

func CirclePlus

func CirclePlus(opts ...Option) templ.Component

CirclePlus creates a circle-plus icon Tags: add, new, increase, increment, positive, calculate, crosshair, aim, target, scope, sight, reticule, maximum, upgrade, extra, operator, join, concatenate, code, coding, +

func CirclePoundSterling

func CirclePoundSterling(opts ...Option) templ.Component

CirclePoundSterling creates a circle-pound-sterling icon Tags: monetization, coin, penny, marketing, currency, money, payment, british, gbp, £

func CirclePower

func CirclePower(opts ...Option) templ.Component

CirclePower creates a circle-power icon Tags: on, off, device, switch, toggle, binary, boolean, reboot, restart, button, keyboard, troubleshoot

func CircleQuestionMark

func CircleQuestionMark(opts ...Option) templ.Component

CircleQuestionMark creates a circle-question-mark icon Tags: question mark

func CircleSlash

func CircleSlash(opts ...Option) templ.Component

CircleSlash creates a circle-slash icon Tags: diameter, zero, Ø, nothing, null, void, cancel, ban, no, stop, forbidden, prohibited, error, incorrect, mistake, wrong, failure, divide, division, or, /

func CircleSlash2

func CircleSlash2(opts ...Option) templ.Component

CircleSlash2 creates a circle-slash-2 icon Tags: diameter, zero, ø, nothing, null, void, ban, math, divide, division, half, split, /, average, avg, mean, median, normal

func CircleSmall

func CircleSmall(opts ...Option) templ.Component

CircleSmall creates a circle-small icon Tags: shape, bullet, gender, genderless

func CircleStar

func CircleStar(opts ...Option) templ.Component

CircleStar creates a circle-star icon Tags: badge, medal, honour, decoration, order, pin, laurel, trophy, medallion, insignia, bronze, silver, gold

func CircleStop

func CircleStop(opts ...Option) templ.Component

CircleStop creates a circle-stop icon Tags: media, music

func CircleUser

func CircleUser(opts ...Option) templ.Component

CircleUser creates a circle-user icon Tags: person, account, contact

func CircleUserRound

func CircleUserRound(opts ...Option) templ.Component

CircleUserRound creates a circle-user-round icon Tags: person, account, contact

func CircleX

func CircleX(opts ...Option) templ.Component

CircleX creates a circle-x icon Tags: cancel, close, delete, remove, times, clear, error, incorrect, wrong, mistake, failure, linter, multiply, multiplication

func CircuitBoard

func CircuitBoard(opts ...Option) templ.Component

CircuitBoard creates a circuit-board icon Tags: computing, electricity, electronics

func Citrus

func Citrus(opts ...Option) templ.Component

Citrus creates a citrus icon Tags: lemon, orange, grapefruit, fruit

func Clapperboard

func Clapperboard(opts ...Option) templ.Component

Clapperboard creates a clapperboard icon Tags: movie, film, video, camera, cinema, cut, action, television, tv, show, entertainment

func Clipboard

func Clipboard(opts ...Option) templ.Component

Clipboard creates a clipboard icon Tags: copy, paste

func ClipboardCheck

func ClipboardCheck(opts ...Option) templ.Component

ClipboardCheck creates a clipboard-check icon Tags: copied, pasted, done, todo, tick, complete, task

func ClipboardClock

func ClipboardClock(opts ...Option) templ.Component

ClipboardClock creates a clipboard-clock icon Tags: copy, paste, history, log, clock, time, watch, alarm, hour, minute, reminder, scheduled, deadline, pending, time tracking, timesheets, appointment, logbook

func ClipboardCopy

func ClipboardCopy(opts ...Option) templ.Component

ClipboardCopy creates a clipboard-copy icon Tags: copy, paste

func ClipboardList

func ClipboardList(opts ...Option) templ.Component

ClipboardList creates a clipboard-list icon Tags: copy, paste, tasks

func ClipboardMinus

func ClipboardMinus(opts ...Option) templ.Component

ClipboardMinus creates a clipboard-minus icon Tags: copy, delete, remove, erase, document, medical, report, doctor

func ClipboardPaste

func ClipboardPaste(opts ...Option) templ.Component

ClipboardPaste creates a clipboard-paste icon Tags: copy, paste

func ClipboardPen

func ClipboardPen(opts ...Option) templ.Component

ClipboardPen creates a clipboard-pen icon Tags: paste, signature

func ClipboardPenLine

func ClipboardPenLine(opts ...Option) templ.Component

ClipboardPenLine creates a clipboard-pen-line icon Tags: paste

func ClipboardPlus

func ClipboardPlus(opts ...Option) templ.Component

ClipboardPlus creates a clipboard-plus icon Tags: copy, paste, add, create, new, document, medical, report, doctor

func ClipboardType

func ClipboardType(opts ...Option) templ.Component

ClipboardType creates a clipboard-type icon Tags: paste, format, text

func ClipboardX

func ClipboardX(opts ...Option) templ.Component

ClipboardX creates a clipboard-x icon Tags: copy, paste, discard, remove

func Clock

func Clock(opts ...Option) templ.Component

Clock creates a clock icon Tags: time, watch, alarm

func Clock1

func Clock1(opts ...Option) templ.Component

Clock1 creates a clock-1 icon Tags: time, watch, alarm

func Clock2

func Clock2(opts ...Option) templ.Component

Clock2 creates a clock-2 icon Tags: time, watch, alarm

func Clock3

func Clock3(opts ...Option) templ.Component

Clock3 creates a clock-3 icon Tags: time, watch, alarm

func Clock4

func Clock4(opts ...Option) templ.Component

Clock4 creates a clock-4 icon Tags: time, watch, alarm

func Clock5

func Clock5(opts ...Option) templ.Component

Clock5 creates a clock-5 icon Tags: time, watch, alarm

func Clock6

func Clock6(opts ...Option) templ.Component

Clock6 creates a clock-6 icon Tags: time, watch, alarm

func Clock7

func Clock7(opts ...Option) templ.Component

Clock7 creates a clock-7 icon Tags: time, watch, alarm

func Clock8

func Clock8(opts ...Option) templ.Component

Clock8 creates a clock-8 icon Tags: time, watch, alarm

func Clock9

func Clock9(opts ...Option) templ.Component

Clock9 creates a clock-9 icon Tags: time, watch, alarm

func Clock10

func Clock10(opts ...Option) templ.Component

Clock10 creates a clock-10 icon Tags: time, watch, alarm

func Clock11

func Clock11(opts ...Option) templ.Component

Clock11 creates a clock-11 icon Tags: time, watch, alarm

func Clock12

func Clock12(opts ...Option) templ.Component

Clock12 creates a clock-12 icon Tags: time, watch, alarm, noon, midnight

func ClockAlert

func ClockAlert(opts ...Option) templ.Component

ClockAlert creates a clock-alert icon Tags: time, watch, alarm, warning, wrong

func ClockArrowDown

func ClockArrowDown(opts ...Option) templ.Component

ClockArrowDown creates a clock-arrow-down icon Tags: time, watch, alarm, sort, order, ascending, descending, increasing, decreasing, rising, falling

func ClockArrowUp

func ClockArrowUp(opts ...Option) templ.Component

ClockArrowUp creates a clock-arrow-up icon Tags: time, watch, alarm, sort, order, ascending, descending, increasing, decreasing, rising, falling

func ClockCheck

func ClockCheck(opts ...Option) templ.Component

ClockCheck creates a clock-check icon Tags: time, watch, alarm

func ClockFading

func ClockFading(opts ...Option) templ.Component

ClockFading creates a clock-fading icon Tags: time, watch, alarm

func ClockPlus

func ClockPlus(opts ...Option) templ.Component

ClockPlus creates a clock-plus icon Tags: time, watch, alarm, add, create, new

func ClosedCaption

func ClosedCaption(opts ...Option) templ.Component

ClosedCaption creates a closed-caption icon Tags: tv, movie, video, closed captions, subtitles, subhead, transcription, transcribe, dialogue, accessibility

func Cloud

func Cloud(opts ...Option) templ.Component

Cloud creates a cloud icon Tags: weather

func CloudAlert

func CloudAlert(opts ...Option) templ.Component

CloudAlert creates a cloud-alert icon Tags: weather, danger, warning, alert, error, sync, network, exclamation

func CloudBackup

func CloudBackup(opts ...Option) templ.Component

CloudBackup creates a cloud-backup icon Tags: storage, memory, bytes, servers, backup, timemachine, rotate, synchronize, synchronise, refresh, reconnect, transfer, data, security, upload, save, remote, safety

func CloudCheck

func CloudCheck(opts ...Option) templ.Component

CloudCheck creates a cloud-check icon Tags: sync, network, success, done, completed, saved, persisted

func CloudCog

func CloudCog(opts ...Option) templ.Component

CloudCog creates a cloud-cog icon Tags: computing, ai, cluster, network

func CloudDownload

func CloudDownload(opts ...Option) templ.Component

CloudDownload creates a cloud-download icon Tags: import

func CloudDrizzle

func CloudDrizzle(opts ...Option) templ.Component

CloudDrizzle creates a cloud-drizzle icon Tags: weather, shower

func CloudFog

func CloudFog(opts ...Option) templ.Component

CloudFog creates a cloud-fog icon Tags: weather, mist

func CloudHail

func CloudHail(opts ...Option) templ.Component

CloudHail creates a cloud-hail icon Tags: weather, rainfall

func CloudLightning

func CloudLightning(opts ...Option) templ.Component

CloudLightning creates a cloud-lightning icon Tags: weather, bolt

func CloudMoon

func CloudMoon(opts ...Option) templ.Component

CloudMoon creates a cloud-moon icon Tags: weather, night

func CloudMoonRain

func CloudMoonRain(opts ...Option) templ.Component

CloudMoonRain creates a cloud-moon-rain icon Tags: weather, partly, night, rainfall

func CloudOff

func CloudOff(opts ...Option) templ.Component

CloudOff creates a cloud-off icon Tags: disconnect

func CloudRain

func CloudRain(opts ...Option) templ.Component

CloudRain creates a cloud-rain icon Tags: weather, rainfall

func CloudRainWind

func CloudRainWind(opts ...Option) templ.Component

CloudRainWind creates a cloud-rain-wind icon Tags: weather, rainfall

func CloudSnow

func CloudSnow(opts ...Option) templ.Component

CloudSnow creates a cloud-snow icon Tags: weather, blizzard

func CloudSun

func CloudSun(opts ...Option) templ.Component

CloudSun creates a cloud-sun icon Tags: weather, partly

func CloudSunRain

func CloudSunRain(opts ...Option) templ.Component

CloudSunRain creates a cloud-sun-rain icon Tags: weather, partly, rainfall

func CloudSync

func CloudSync(opts ...Option) templ.Component

CloudSync creates a cloud-sync icon Tags: synchronize, synchronise, refresh, reconnect, transfer, backup, storage, upload, download, connection, network, data

func CloudUpload

func CloudUpload(opts ...Option) templ.Component

CloudUpload creates a cloud-upload icon Tags: file

func Cloudy

func Cloudy(opts ...Option) templ.Component

Cloudy creates a cloudy icon Tags: weather, clouds

func Clover

func Clover(opts ...Option) templ.Component

Clover creates a clover icon Tags: leaf, luck, plant

func Club

func Club(opts ...Option) templ.Component

Club creates a club icon Tags: shape, suit, playing, cards

func Code

func Code(opts ...Option) templ.Component

Code creates a code icon Tags: source, programming, html, xml

func CodeXml

func CodeXml(opts ...Option) templ.Component

CodeXml creates a code-xml icon Tags: source, programming, html, xml

func Codepen

func Codepen(opts ...Option) templ.Component

Codepen creates a codepen icon Tags: logo

func Codesandbox

func Codesandbox(opts ...Option) templ.Component

Codesandbox creates a codesandbox icon Tags: logo

func Coffee

func Coffee(opts ...Option) templ.Component

Coffee creates a coffee icon Tags: drink, cup, mug, tea, cafe, hot, beverage

func Cog

func Cog(opts ...Option) templ.Component

Cog creates a cog icon Tags: computing, settings, cog, edit, gear, preferences, controls, configuration, fixed, build, construction, parts

func Coins

func Coins(opts ...Option) templ.Component

Coins creates a coins icon Tags: money, cash, finance, gamble

func Columns2

func Columns2(opts ...Option) templ.Component

Columns2 creates a columns-2 icon Tags: lines, list, queue, preview, panel, parallel, series, split, vertical, horizontal, half, center, middle, even, sidebar, drawer, gutter, fold, reflow, typography, pagination, pages

func Columns3

func Columns3(opts ...Option) templ.Component

Columns3 creates a columns-3 icon Tags: lines, list, queue, preview, parallel, series, split, vertical, horizontal, thirds, triple, center, middle, alignment, even, sidebars, drawers, gutters, fold, reflow, typography, pagination, pages

func Columns3Cog

func Columns3Cog(opts ...Option) templ.Component

Columns3Cog creates a columns-3-cog icon Tags: columns, settings, customize, table, grid, adjust, configuration, panel, layout

func Columns4

func Columns4(opts ...Option) templ.Component

Columns4 creates a columns-4 icon Tags: lines, list, queue, preview, parallel, series, split, vertical, horizontal, thirds, triple, center, middle, alignment, even, sidebars, drawers, gutters, fold, reflow, typography, pagination, pages, prison, jail, bars, sentence, police, cops, cell, crime, criminal, justice, law, enforcement, grill

func Combine

func Combine(opts ...Option) templ.Component

Combine creates a combine icon Tags: cubes, packages, parts, units, collection, cluster, combine, gather, merge

func Command

func Command(opts ...Option) templ.Component

Command creates a command icon Tags: keyboard, key, mac, cmd, button

func Compass

func Compass(opts ...Option) templ.Component

Compass creates a compass icon Tags: direction, north, east, south, west, safari, browser

func Component

func Component(opts ...Option) templ.Component

Component creates a component icon Tags: design, element, group, module, part, symbol

func Computer

func Computer(opts ...Option) templ.Component

Computer creates a computer icon Tags: pc, chassis, codespaces, github

func ConciergeBell

func ConciergeBell(opts ...Option) templ.Component

ConciergeBell creates a concierge-bell icon Tags: reception, bell, porter

func Cone

func Cone(opts ...Option) templ.Component

Cone creates a cone icon Tags: conical, triangle, triangular, geometry, filter, funnel, hopper, spotlight, searchlight

func Construction

func Construction(opts ...Option) templ.Component

Construction creates a construction icon Tags: roadwork, maintenance, blockade, barricade

func Contact

func Contact(opts ...Option) templ.Component

Contact creates a contact icon Tags: user, person, family, friend, acquaintance, listing, networking

func ContactRound

func ContactRound(opts ...Option) templ.Component

ContactRound creates a contact-round icon Tags: user, person, family, friend, acquaintance, listing, networking

func Container

func Container(opts ...Option) templ.Component

Container creates a container icon Tags: storage, shipping, freight, supply chain, docker, environment, devops, code, coding

func Contrast

func Contrast(opts ...Option) templ.Component

Contrast creates a contrast icon Tags: display, accessibility

func Cookie(opts ...Option) templ.Component

Cookie creates a cookie icon Tags: biscuit, privacy, legal, food

func CookingPot

func CookingPot(opts ...Option) templ.Component

CookingPot creates a cooking-pot icon Tags: pod, cooking, recipe, food, kitchen, chef, restaurant, dinner, lunch, breakfast, meal, eat

func Copy

func Copy(opts ...Option) templ.Component

Copy creates a copy icon Tags: clone, duplicate, multiple

func CopyCheck

func CopyCheck(opts ...Option) templ.Component

CopyCheck creates a copy-check icon Tags: clone, duplicate, done, multiple

func CopyMinus

func CopyMinus(opts ...Option) templ.Component

CopyMinus creates a copy-minus icon Tags: clone, duplicate, remove, delete, collapse, subtract, multiple, -

func CopyPlus

func CopyPlus(opts ...Option) templ.Component

CopyPlus creates a copy-plus icon Tags: clone, duplicate, add, multiple, expand, +

func CopySlash

func CopySlash(opts ...Option) templ.Component

CopySlash creates a copy-slash icon Tags: clone, duplicate, cancel, ban, no, stop, forbidden, prohibited, error, multiple, divide, division, split, or, /

func CopyX

func CopyX(opts ...Option) templ.Component

CopyX creates a copy-x icon Tags: cancel, close, delete, remove, clear, multiple, multiply, multiplication, times

func Copyleft

func Copyleft(opts ...Option) templ.Component

Copyleft creates a copyleft icon Tags: licence

func Copyright(opts ...Option) templ.Component

Copyright creates a copyright icon Tags: licence, license

func CornerDownLeft

func CornerDownLeft(opts ...Option) templ.Component

CornerDownLeft creates a corner-down-left icon Tags: arrow, return

func CornerDownRight

func CornerDownRight(opts ...Option) templ.Component

CornerDownRight creates a corner-down-right icon Tags: arrow, indent, tab

func CornerLeftDown

func CornerLeftDown(opts ...Option) templ.Component

CornerLeftDown creates a corner-left-down icon Tags: arrow

func CornerLeftUp

func CornerLeftUp(opts ...Option) templ.Component

CornerLeftUp creates a corner-left-up icon Tags: arrow

func CornerRightDown

func CornerRightDown(opts ...Option) templ.Component

CornerRightDown creates a corner-right-down icon Tags: arrow

func CornerRightUp

func CornerRightUp(opts ...Option) templ.Component

CornerRightUp creates a corner-right-up icon Tags: arrow

func CornerUpLeft

func CornerUpLeft(opts ...Option) templ.Component

CornerUpLeft creates a corner-up-left icon Tags: arrow

func CornerUpRight

func CornerUpRight(opts ...Option) templ.Component

CornerUpRight creates a corner-up-right icon Tags: arrow

func Cpu

func Cpu(opts ...Option) templ.Component

Cpu creates a cpu icon Tags: processor, cores, technology, computer, chip, circuit, memory, ram, specs, gigahertz, ghz

func CreativeCommons

func CreativeCommons(opts ...Option) templ.Component

CreativeCommons creates a creative-commons icon Tags: licence, license

func CreditCard

func CreditCard(opts ...Option) templ.Component

CreditCard creates a credit-card icon Tags: bank, purchase, payment, cc

func Croissant

func Croissant(opts ...Option) templ.Component

Croissant creates a croissant icon Tags: bakery, cooking, food, pastry

func Crop

func Crop(opts ...Option) templ.Component

Crop creates a crop icon Tags: photo, image

func Cross

func Cross(opts ...Option) templ.Component

Cross creates a cross icon Tags: healthcare, first aid

func Crosshair

func Crosshair(opts ...Option) templ.Component

Crosshair creates a crosshair icon Tags: aim, target

func Crown

func Crown(opts ...Option) templ.Component

Crown creates a crown icon Tags: diadem, tiara, circlet, corona, king, ruler, winner, favourite

func Cuboid

func Cuboid(opts ...Option) templ.Component

Cuboid creates a cuboid icon Tags: brick, block, container, storage, geometry, rectangular, hexahedron

func CupSoda

func CupSoda(opts ...Option) templ.Component

CupSoda creates a cup-soda icon Tags: beverage, cup, drink, soda, straw, water

func Currency

func Currency(opts ...Option) templ.Component

Currency creates a currency icon Tags: finance, money

func Cylinder

func Cylinder(opts ...Option) templ.Component

Cylinder creates a cylinder icon Tags: shape, elliptical, geometry, container, storage, tin, pot

func Dam

func Dam(opts ...Option) templ.Component

Dam creates a dam icon Tags: electricity, energy, water

func Database

func Database(opts ...Option) templ.Component

Database creates a database icon Tags: storage, memory, container, tin, pot, bytes, servers

func DatabaseBackup

func DatabaseBackup(opts ...Option) templ.Component

DatabaseBackup creates a database-backup icon Tags: storage, memory, bytes, servers, backup, timemachine, rotate, arrow, left

func DatabaseZap

func DatabaseZap(opts ...Option) templ.Component

DatabaseZap creates a database-zap icon Tags: cache busting, storage, memory, bytes, servers, power, crash

func DecimalsArrowLeft

func DecimalsArrowLeft(opts ...Option) templ.Component

DecimalsArrowLeft creates a decimals-arrow-left icon Tags: numerical, decimal, decrease, less, fewer, precision, rounding, digits, fraction, float, number

func DecimalsArrowRight

func DecimalsArrowRight(opts ...Option) templ.Component

DecimalsArrowRight creates a decimals-arrow-right icon Tags: numerical, decimal, increase, more, precision, rounding, digits, fraction, float, number

func Delete

func Delete(opts ...Option) templ.Component

Delete creates a delete icon Tags: backspace, remove

func Dessert

func Dessert(opts ...Option) templ.Component

Dessert creates a dessert icon Tags: pudding, christmas, xmas, custard, iced bun, icing, fondant, cake, ice cream, gelato, sundae, scoop, dollop, sugar, food, sweet

func Diameter

func Diameter(opts ...Option) templ.Component

Diameter creates a diameter icon Tags: shape, circle, geometry, trigonometry, width, height, size, calculate, measure

func Diamond

func Diamond(opts ...Option) templ.Component

Diamond creates a diamond icon Tags: square, rectangle, oblique, rhombus, shape, suit, playing, cards

func DiamondMinus

func DiamondMinus(opts ...Option) templ.Component

DiamondMinus creates a diamond-minus icon Tags: keyframe, subtract, remove, decrease, reduce, calculator, button, keyboard, line, divider, separator, horizontal rule, hr, html, markup, markdown, ---, toolbar, operator, code, coding, minimum, downgrade

func DiamondPercent

func DiamondPercent(opts ...Option) templ.Component

DiamondPercent creates a diamond-percent icon Tags: verified, unverified, sale, discount, offer, marketing, sticker, price tag

func DiamondPlus

func DiamondPlus(opts ...Option) templ.Component

DiamondPlus creates a diamond-plus icon Tags: keyframe, add, new, increase, increment, positive, calculate, toolbar, crosshair, aim, target, scope, sight, reticule, maximum, upgrade, extra, +

func Dice1

func Dice1(opts ...Option) templ.Component

Dice1 creates a dice-1 icon Tags: dice, random, tabletop, 1, board, game

func Dice2

func Dice2(opts ...Option) templ.Component

Dice2 creates a dice-2 icon Tags: dice, random, tabletop, 2, board, game

func Dice3

func Dice3(opts ...Option) templ.Component

Dice3 creates a dice-3 icon Tags: dice, random, tabletop, 3, board, game

func Dice4

func Dice4(opts ...Option) templ.Component

Dice4 creates a dice-4 icon Tags: dice, random, tabletop, 4, board, game

func Dice5

func Dice5(opts ...Option) templ.Component

Dice5 creates a dice-5 icon Tags: dice, random, tabletop, 5, board, game

func Dice6

func Dice6(opts ...Option) templ.Component

Dice6 creates a dice-6 icon Tags: dice, random, tabletop, 6, board, game

func Dices

func Dices(opts ...Option) templ.Component

Dices creates a dices icon Tags: dice, random, tabletop, board, game

func Diff

func Diff(opts ...Option) templ.Component

Diff creates a diff icon Tags: patch, difference, compare, plus, minus, plus-minus, math

func Disc

func Disc(opts ...Option) templ.Component

Disc creates a disc icon Tags: album, music, songs, format, cd, dvd, vinyl, sleeve, cover, platinum, compilation, ep, recording, playback, spin, rotate, rpm, dj

func Disc2

func Disc2(opts ...Option) templ.Component

Disc2 creates a disc-2 icon Tags: album, music, vinyl, record, cd, dvd, format, dj, spin, rotate, rpm

func Disc3

func Disc3(opts ...Option) templ.Component

Disc3 creates a disc-3 icon Tags: album, music, vinyl, record, cd, dvd, format, dj, spin, rotate, rpm

func DiscAlbum

func DiscAlbum(opts ...Option) templ.Component

DiscAlbum creates a disc-album icon Tags: album, music, songs, format, cd, dvd, vinyl, sleeve, cover, platinum, compilation, ep, recording, playback, spin, rotate, rpm, dj

func Divide

func Divide(opts ...Option) templ.Component

Divide creates a divide icon Tags: calculate, math, division, operator, code, ÷, /

func Dna

func Dna(opts ...Option) templ.Component

Dna creates a dna icon Tags: gene, gmo, helix, heredity, chromosome, nucleic acid

func DnaOff

func DnaOff(opts ...Option) templ.Component

DnaOff creates a dna-off icon Tags: gene, gmo free, helix, heredity, chromosome, nucleic acid

func Dock

func Dock(opts ...Option) templ.Component

Dock creates a dock icon Tags: desktop, applications, launch, home, menu bar, bottom, line, macos, osx

func Dog

func Dog(opts ...Option) templ.Component

Dog creates a dog icon Tags: animal, pet, puppy, hound, canine

func DollarSign

func DollarSign(opts ...Option) templ.Component

DollarSign creates a dollar-sign icon Tags: currency, money, payment

func Donut

func Donut(opts ...Option) templ.Component

Donut creates a donut icon Tags: doughnut, sprinkles, topping, fast food, junk food, snack, treat, sweet, sugar, dessert, hollow, ring

func DoorClosed

func DoorClosed(opts ...Option) templ.Component

DoorClosed creates a door-closed icon Tags: entrance, entry, exit, ingress, egress, gate, gateway, emergency exit

func DoorClosedLocked

func DoorClosedLocked(opts ...Option) templ.Component

DoorClosedLocked creates a door-closed-locked icon Tags: entrance, entry, exit, ingress, egress, gate, gateway, emergency exit, lock

func DoorOpen

func DoorOpen(opts ...Option) templ.Component

DoorOpen creates a door-open icon Tags: entrance, entry, exit, ingress, egress, gate, gateway, emergency exit

func Dot

func Dot(opts ...Option) templ.Component

Dot creates a dot icon Tags: interpunct, interpoint, middot, step, punctuation, period, full stop, end, finish, final, characters, font, typography, type, center, .

func Download

func Download(opts ...Option) templ.Component

Download creates a download icon Tags: import, export, save

func DraftingCompass

func DraftingCompass(opts ...Option) templ.Component

DraftingCompass creates a drafting-compass icon Tags: geometry, trigonometry, radius, diameter, circumference, calculate, measure, arc, curve, draw, sketch

func Drama

func Drama(opts ...Option) templ.Component

Drama creates a drama icon Tags: drama, masks, theater, theatre, entertainment, show

func Dribbble

func Dribbble(opts ...Option) templ.Component

Dribbble creates a dribbble icon Tags: design, social

func Drill

func Drill(opts ...Option) templ.Component

Drill creates a drill icon Tags: power, bit, head, hole, diy, toolbox, build, construction

func Drone

func Drone(opts ...Option) templ.Component

Drone creates a drone icon Tags: quadcopter, uav, aerial, flight, flying, technology, airborne, robotics

func Droplet

func Droplet(opts ...Option) templ.Component

Droplet creates a droplet icon Tags: water, weather, liquid, fluid, wet, moisture, damp, bead, globule

func DropletOff

func DropletOff(opts ...Option) templ.Component

DropletOff creates a droplet-off icon Tags: water, weather, liquid, fluid, wet, moisture, damp, bead, globule

func Droplets

func Droplets(opts ...Option) templ.Component

Droplets creates a droplets icon Tags: water, weather, liquid, fluid, wet, moisture, damp, bead, globule

func Drum

func Drum(opts ...Option) templ.Component

Drum creates a drum icon Tags: drummer, kit, sticks, instrument, beat, bang, bass, backing track, band, play, performance, concert, march, music, audio, sound, noise, loud

func Drumstick

func Drumstick(opts ...Option) templ.Component

Drumstick creates a drumstick icon Tags: food, chicken, meat

func Dumbbell

func Dumbbell(opts ...Option) templ.Component

Dumbbell creates a dumbbell icon Tags: barbell, weight, workout, gym

func Ear

func Ear(opts ...Option) templ.Component

Ear creates a ear icon Tags: hearing, noise, audio, accessibility

func EarOff

func EarOff(opts ...Option) templ.Component

EarOff creates a ear-off icon Tags: hearing, hard of hearing, hearing loss, deafness, noise, silence, audio, accessibility

func Earth

func Earth(opts ...Option) templ.Component

Earth creates a earth icon Tags: world, browser, language, translate, globe

func EarthLock

func EarthLock(opts ...Option) templ.Component

EarthLock creates a earth-lock icon Tags: vpn, private, privacy, network, world, browser, security, encryption, protection, connection

func Eclipse

func Eclipse(opts ...Option) templ.Component

Eclipse creates a eclipse icon Tags: lunar, solar, crescent moon, sun, earth, day, night, planet, space, mode, dark, light, toggle, switch, color, css, styles, display, accessibility, contrast, brightness, blend, shade

func Egg

func Egg(opts ...Option) templ.Component

Egg creates a egg icon Tags: bird, chicken, nest, hatch, shell, incubate, soft boiled, hard, breakfast, brunch, morning, easter

func EggFried

func EggFried(opts ...Option) templ.Component

EggFried creates a egg-fried icon Tags: food, breakfast

func EggOff

func EggOff(opts ...Option) templ.Component

EggOff creates a egg-off icon Tags: egg free, vegan, hatched, bad egg

func Ellipsis

func Ellipsis(opts ...Option) templ.Component

Ellipsis creates a ellipsis icon Tags: et cetera, etc, loader, loading, progress, pending, throbber, menu, options, operator, code, coding, spread, rest, more, further, extra, overflow, dots, …, ...

func EllipsisVertical

func EllipsisVertical(opts ...Option) templ.Component

EllipsisVertical creates a ellipsis-vertical icon Tags: menu, options, spread, more, further, extra, overflow, dots, …, ...

func Equal

func Equal(opts ...Option) templ.Component

Equal creates a equal icon Tags: calculate, math, operator, assignment, code, =

func EqualApproximately

func EqualApproximately(opts ...Option) templ.Component

EqualApproximately creates a equal-approximately icon Tags: about, calculate, math, operater

func EqualNot

func EqualNot(opts ...Option) templ.Component

EqualNot creates a equal-not icon Tags: calculate, off, math, operator, code, ≠

func Eraser

func Eraser(opts ...Option) templ.Component

Eraser creates a eraser icon Tags: pencil, drawing, undo, delete, clear, trash, remove

func EthernetPort

func EthernetPort(opts ...Option) templ.Component

EthernetPort creates a ethernet-port icon Tags: internet, network, connection, cable, lan, port, router, switch, hub, modem, web, online, networking, communication, socket, plug, slot, controller, connector, interface, console, signal, data, input, output

func Euro

func Euro(opts ...Option) templ.Component

Euro creates a euro icon Tags: currency, money, payment

func EvCharger

func EvCharger(opts ...Option) templ.Component

EvCharger creates a ev-charger icon Tags: electric, charger, station, vehicle, fast, plug, ev, power, electricity, energy, accumulator, charge

func Expand

func Expand(opts ...Option) templ.Component

Expand creates a expand icon Tags: scale, fullscreen, maximize, minimize, contract

func ExternalLink(opts ...Option) templ.Component

ExternalLink creates a external-link icon Tags: outbound, open, share

func Eye

func Eye(opts ...Option) templ.Component

Eye creates a eye icon Tags: view, watch, see, show, expose, reveal, display, visible, visibility, vision, preview, read

func EyeClosed

func EyeClosed(opts ...Option) templ.Component

EyeClosed creates a eye-closed icon Tags: view, watch, see, hide, conceal, mask, hidden, visibility, vision

func EyeOff

func EyeOff(opts ...Option) templ.Component

EyeOff creates a eye-off icon Tags: view, watch, see, hide, conceal, mask, hidden, visibility, vision

func Facebook

func Facebook(opts ...Option) templ.Component

Facebook creates a facebook icon Tags: logo, social

func Factory

func Factory(opts ...Option) templ.Component

Factory creates a factory icon Tags: building, business, energy, industry, manufacture, sector

func Fan

func Fan(opts ...Option) templ.Component

Fan creates a fan icon Tags: air, cooler, ventilation, ventilator, blower

func FastForward

func FastForward(opts ...Option) templ.Component

FastForward creates a fast-forward icon Tags: music

func Feather

func Feather(opts ...Option) templ.Component

Feather creates a feather icon Tags: logo

func Fence

func Fence(opts ...Option) templ.Component

Fence creates a fence icon Tags: picket, panels, woodwork, diy, materials, suburban, garden, property, territory

func FerrisWheel

func FerrisWheel(opts ...Option) templ.Component

FerrisWheel creates a ferris-wheel icon Tags: big wheel, daisy wheel, observation, attraction, entertainment, amusement park, theme park, funfair

func Figma

func Figma(opts ...Option) templ.Component

Figma creates a figma icon Tags: logo, design, tool

func File

func File(opts ...Option) templ.Component

File creates a file icon Tags: document

func FileArchive

func FileArchive(opts ...Option) templ.Component

FileArchive creates a file-archive icon Tags: zip, package, archive

func FileAxis3d

func FileAxis3d(opts ...Option) templ.Component

FileAxis3d creates a file-axis-3d icon Tags: model, 3d, axis, coordinates

func FileBadge

func FileBadge(opts ...Option) templ.Component

FileBadge creates a file-badge icon Tags: award, achievement, badge, rosette, prize, winner

func FileBox

func FileBox(opts ...Option) templ.Component

FileBox creates a file-box icon Tags: box, package, model

func FileBraces

func FileBraces(opts ...Option) templ.Component

FileBraces creates a file-braces icon Tags: code, json, curly braces, curly brackets

func FileBracesCorner

func FileBracesCorner(opts ...Option) templ.Component

FileBracesCorner creates a file-braces-corner icon Tags: code, json, curly braces, curly brackets

func FileChartColumn

func FileChartColumn(opts ...Option) templ.Component

FileChartColumn creates a file-chart-column icon Tags: statistics, analytics, diagram, graph, presentation

func FileChartColumnIncreasing

func FileChartColumnIncreasing(opts ...Option) templ.Component

FileChartColumnIncreasing creates a file-chart-column-increasing icon Tags: statistics, analytics, diagram, graph, presentation, trending up

func FileChartLine

func FileChartLine(opts ...Option) templ.Component

FileChartLine creates a file-chart-line icon Tags: statistics, analytics, diagram, graph, presentation

func FileChartPie

func FileChartPie(opts ...Option) templ.Component

FileChartPie creates a file-chart-pie icon Tags: statistics, analytics, diagram, graph, presentation

func FileCheck

func FileCheck(opts ...Option) templ.Component

FileCheck creates a file-check icon Tags: done, document, todo, tick, complete, task

func FileCheckCorner

func FileCheckCorner(opts ...Option) templ.Component

FileCheckCorner creates a file-check-corner icon Tags: done, document, todo, tick, complete, task

func FileClock

func FileClock(opts ...Option) templ.Component

FileClock creates a file-clock icon Tags: history, log, clock

func FileCode

func FileCode(opts ...Option) templ.Component

FileCode creates a file-code icon Tags: script, document, gist, html, xml, property list, plist

func FileCodeCorner

func FileCodeCorner(opts ...Option) templ.Component

FileCodeCorner creates a file-code-corner icon Tags: script, document, html, xml, property list, plist

func FileCog

func FileCog(opts ...Option) templ.Component

FileCog creates a file-cog icon Tags: executable, settings, cog, edit, gear

func FileDiff

func FileDiff(opts ...Option) templ.Component

FileDiff creates a file-diff icon Tags: diff, patch

func FileDigit

func FileDigit(opts ...Option) templ.Component

FileDigit creates a file-digit icon Tags: number, document

func FileDown

func FileDown(opts ...Option) templ.Component

FileDown creates a file-down icon Tags: download, import, export

func FileExclamationPoint

func FileExclamationPoint(opts ...Option) templ.Component

FileExclamationPoint creates a file-exclamation-point icon Tags: hidden, warning, alert, danger, protected, exclamation mark

func FileHeadphone

func FileHeadphone(opts ...Option) templ.Component

FileHeadphone creates a file-headphone icon Tags: music, audio, sound, headphones

func FileHeart

func FileHeart(opts ...Option) templ.Component

FileHeart creates a file-heart icon Tags: heart, favourite, bookmark, quick link

func FileImage

func FileImage(opts ...Option) templ.Component

FileImage creates a file-image icon Tags: image, graphics, photo, picture

func FileInput

func FileInput(opts ...Option) templ.Component

FileInput creates a file-input icon Tags: document

func FileKey

func FileKey(opts ...Option) templ.Component

FileKey creates a file-key icon Tags: key, private, public, security

func FileLock

func FileLock(opts ...Option) templ.Component

FileLock creates a file-lock icon Tags: lock, password, security

func FileMinus

func FileMinus(opts ...Option) templ.Component

FileMinus creates a file-minus icon Tags: delete, remove, erase, document

func FileMinusCorner

func FileMinusCorner(opts ...Option) templ.Component

FileMinusCorner creates a file-minus-corner icon Tags: document

func FileMusic

func FileMusic(opts ...Option) templ.Component

FileMusic creates a file-music icon Tags: audio, sound, noise, track, digital, recording, playback, piano, keyboard, keys, notes, chord, midi, octave

func FileOutput

func FileOutput(opts ...Option) templ.Component

FileOutput creates a file-output icon Tags: document

func FilePen

func FilePen(opts ...Option) templ.Component

FilePen creates a file-pen icon Tags: signature

func FilePenLine

func FilePenLine(opts ...Option) templ.Component

FilePenLine creates a file-pen-line icon Tags: edit

func FilePlay

func FilePlay(opts ...Option) templ.Component

FilePlay creates a file-play icon Tags: movie, video, film

func FilePlus

func FilePlus(opts ...Option) templ.Component

FilePlus creates a file-plus icon Tags: add, create, new, document

func FilePlusCorner

func FilePlusCorner(opts ...Option) templ.Component

FilePlusCorner creates a file-plus-corner icon Tags: add, create, new, document

func FileQuestionMark

func FileQuestionMark(opts ...Option) templ.Component

FileQuestionMark creates a file-question-mark icon Tags: readme, help, question

func FileScan

func FileScan(opts ...Option) templ.Component

FileScan creates a file-scan icon Tags: scan, code, qr-code

func FileSearch

func FileSearch(opts ...Option) templ.Component

FileSearch creates a file-search icon Tags: lost, document, find, browser, lens

func FileSearchCorner

func FileSearchCorner(opts ...Option) templ.Component

FileSearchCorner creates a file-search-corner icon Tags: lost, document, find, browser, lens

func FileSignal

func FileSignal(opts ...Option) templ.Component

FileSignal creates a file-signal icon Tags: audio, music, volume

func FileSliders

func FileSliders(opts ...Option) templ.Component

FileSliders creates a file-sliders icon Tags: cogged, gear, mechanical, machinery, configuration, controls, preferences, settings, system, admin, edit, executable

func FileSpreadsheet

func FileSpreadsheet(opts ...Option) templ.Component

FileSpreadsheet creates a file-spreadsheet icon Tags: spreadsheet, sheet, table

func FileStack

func FileStack(opts ...Option) templ.Component

FileStack creates a file-stack icon Tags: versions, multiple, copy, documents, revisions, version control, history

func FileSymlink(opts ...Option) templ.Component

FileSymlink creates a file-symlink icon Tags: symlink, symbolic, link

func FileTerminal

func FileTerminal(opts ...Option) templ.Component

FileTerminal creates a file-terminal icon Tags: terminal, bash, script, executable

func FileText

func FileText(opts ...Option) templ.Component

FileText creates a file-text icon Tags: data, txt, pdf, document

func FileType

func FileType(opts ...Option) templ.Component

FileType creates a file-type icon Tags: font, text, typography, type

func FileTypeCorner

func FileTypeCorner(opts ...Option) templ.Component

FileTypeCorner creates a file-type-corner icon Tags: font, text, typography, type

func FileUp

func FileUp(opts ...Option) templ.Component

FileUp creates a file-up icon Tags: upload, import, export

func FileUser

func FileUser(opts ...Option) templ.Component

FileUser creates a file-user icon Tags: person, personal information, people, listing, networking, document, contact, cover letter, resume, cv, curriculum vitae, application form

func FileVideoCamera

func FileVideoCamera(opts ...Option) templ.Component

FileVideoCamera creates a file-video-camera icon Tags: movie, video, film

func FileVolume

func FileVolume(opts ...Option) templ.Component

FileVolume creates a file-volume icon Tags: audio, music, volume

func FileX

func FileX(opts ...Option) templ.Component

FileX creates a file-x icon Tags: lost, delete, remove, document

func FileXCorner

func FileXCorner(opts ...Option) templ.Component

FileXCorner creates a file-x-corner icon Tags: lost, delete, remove, document

func Files

func Files(opts ...Option) templ.Component

Files creates a files icon Tags: multiple, copy, documents

func Film

func Film(opts ...Option) templ.Component

Film creates a film icon Tags: movie, video, reel, camera, cinema, entertainment

func FingerprintPattern

func FingerprintPattern(opts ...Option) templ.Component

FingerprintPattern creates a fingerprint-pattern icon Tags: 2fa, authentication, biometric, identity, security

func FireExtinguisher

func FireExtinguisher(opts ...Option) templ.Component

FireExtinguisher creates a fire-extinguisher icon Tags: flames, smoke, foam, water, spray, hose, firefighter, fireman, department, brigade, station, emergency, suppress, compressed, tank, cylinder, safety, equipment, amenities

func Fish

func Fish(opts ...Option) templ.Component

Fish creates a fish icon Tags: dish, restaurant, course, meal, seafood, pet, sea, marine

func FishOff

func FishOff(opts ...Option) templ.Component

FishOff creates a fish-off icon Tags: food, dish, restaurant, course, meal, seafood, animal, pet, sea, marine, allergy, intolerance, diet

func FishSymbol

func FishSymbol(opts ...Option) templ.Component

FishSymbol creates a fish-symbol icon Tags: dish, restaurant, course, meal, seafood, pet, sea, marine

func FishingHook

func FishingHook(opts ...Option) templ.Component

FishingHook creates a fishing-hook icon Tags: sea, boating, angler, bait, reel, tackle, marine, outdoors, fish, fishing, hook, sports, travel

func Flag

func Flag(opts ...Option) templ.Component

Flag creates a flag icon Tags: report, marker, notification, warning, milestone, goal, notice, signal, attention, banner

func FlagOff

func FlagOff(opts ...Option) templ.Component

FlagOff creates a flag-off icon Tags: unflag, unmark, report, marker, notification, warning, milestone, goal, notice, signal, attention, banner

func FlagTriangleLeft

func FlagTriangleLeft(opts ...Option) templ.Component

FlagTriangleLeft creates a flag-triangle-left icon Tags: report, timeline, marker, pin

func FlagTriangleRight

func FlagTriangleRight(opts ...Option) templ.Component

FlagTriangleRight creates a flag-triangle-right icon Tags: report, timeline, marker, pin

func Flame

func Flame(opts ...Option) templ.Component

Flame creates a flame icon Tags: heat, burn, light, glow, ignite, passion, ember, fire, lit, burning, spark, embers, smoke, firefighter, fireman, department, brigade, station, emergency

func FlameKindling

func FlameKindling(opts ...Option) templ.Component

FlameKindling creates a flame-kindling icon Tags: campfire, camping, wilderness, outdoors, lit, warmth, wood, twigs, sticks

func Flashlight

func Flashlight(opts ...Option) templ.Component

Flashlight creates a flashlight icon Tags: torch, light, beam, emergency, safety, tool, bright

func FlashlightOff

func FlashlightOff(opts ...Option) templ.Component

FlashlightOff creates a flashlight-off icon Tags: torch, light, beam, emergency, safety, tool, bright

func FlaskConical

func FlaskConical(opts ...Option) templ.Component

FlaskConical creates a flask-conical icon Tags: beaker, erlenmeyer, lab, chemistry, experiment, test

func FlaskConicalOff

func FlaskConicalOff(opts ...Option) templ.Component

FlaskConicalOff creates a flask-conical-off icon Tags: beaker, erlenmeyer, non toxic, lab, chemistry, experiment, test

func FlaskRound

func FlaskRound(opts ...Option) templ.Component

FlaskRound creates a flask-round icon Tags: beaker, lab, chemistry, experiment, test

func FlipHorizontal

func FlipHorizontal(opts ...Option) templ.Component

FlipHorizontal creates a flip-horizontal icon Tags: reflect, mirror, alignment, dashed

func FlipHorizontal2

func FlipHorizontal2(opts ...Option) templ.Component

FlipHorizontal2 creates a flip-horizontal-2 icon Tags: reflect, mirror, alignment, dashed

func FlipVertical

func FlipVertical(opts ...Option) templ.Component

FlipVertical creates a flip-vertical icon Tags: reflect, mirror, alignment, dashed

func FlipVertical2

func FlipVertical2(opts ...Option) templ.Component

FlipVertical2 creates a flip-vertical-2 icon Tags: reflect, mirror, alignment, dashed

func Flower

func Flower(opts ...Option) templ.Component

Flower creates a flower icon Tags: sustainability, nature, plant, spring

func Flower2

func Flower2(opts ...Option) templ.Component

Flower2 creates a flower-2 icon Tags: sustainability, nature, plant

func Focus

func Focus(opts ...Option) templ.Component

Focus creates a focus icon Tags: camera, lens, photo, dashed

func FoldHorizontal

func FoldHorizontal(opts ...Option) templ.Component

FoldHorizontal creates a fold-horizontal icon Tags: arrow, collapse, fold, vertical, dashed

func FoldVertical

func FoldVertical(opts ...Option) templ.Component

FoldVertical creates a fold-vertical icon Tags: arrow, collapse, fold, vertical, dashed

func Folder

func Folder(opts ...Option) templ.Component

Folder creates a folder icon Tags: directory

func FolderArchive

func FolderArchive(opts ...Option) templ.Component

FolderArchive creates a folder-archive icon Tags: archive, zip, package

func FolderCheck

func FolderCheck(opts ...Option) templ.Component

FolderCheck creates a folder-check icon Tags: done, directory, todo, tick, complete, task

func FolderClock

func FolderClock(opts ...Option) templ.Component

FolderClock creates a folder-clock icon Tags: history, directory, clock

func FolderClosed

func FolderClosed(opts ...Option) templ.Component

FolderClosed creates a folder-closed icon Tags: directory, closed

func FolderCode

func FolderCode(opts ...Option) templ.Component

FolderCode creates a folder-code icon Tags: directory, coding, develop, software

func FolderCog

func FolderCog(opts ...Option) templ.Component

FolderCog creates a folder-cog icon Tags: directory, settings, control, preferences, cog, edit, gear

func FolderDot

func FolderDot(opts ...Option) templ.Component

FolderDot creates a folder-dot icon Tags: directory, root, project, pinned, active, current, cogged, gear, mechanical, machinery, configuration, controls, preferences, settings, system, admin, edit

func FolderDown

func FolderDown(opts ...Option) templ.Component

FolderDown creates a folder-down icon Tags: directory, download, import, export

func FolderGit

func FolderGit(opts ...Option) templ.Component

FolderGit creates a folder-git icon Tags: directory, root, project, git, repo

func FolderGit2

func FolderGit2(opts ...Option) templ.Component

FolderGit2 creates a folder-git-2 icon Tags: directory, root, project, git, repo

func FolderHeart

func FolderHeart(opts ...Option) templ.Component

FolderHeart creates a folder-heart icon Tags: directory, heart, favourite, bookmark, quick link

func FolderInput

func FolderInput(opts ...Option) templ.Component

FolderInput creates a folder-input icon Tags: directory, import, export

func FolderKanban

func FolderKanban(opts ...Option) templ.Component

FolderKanban creates a folder-kanban icon Tags: projects, manage, overview, board, tickets, issues, roadmap, plan, intentions, productivity, work, agile, code, coding, directory, project, root

func FolderKey

func FolderKey(opts ...Option) templ.Component

FolderKey creates a folder-key icon Tags: directory, key, private, security, protected

func FolderLock

func FolderLock(opts ...Option) templ.Component

FolderLock creates a folder-lock icon Tags: directory, lock, private, security, protected

func FolderMinus

func FolderMinus(opts ...Option) templ.Component

FolderMinus creates a folder-minus icon Tags: directory, remove, delete

func FolderOpen

func FolderOpen(opts ...Option) templ.Component

FolderOpen creates a folder-open icon Tags: directory

func FolderOpenDot

func FolderOpenDot(opts ...Option) templ.Component

FolderOpenDot creates a folder-open-dot icon Tags: directory, root, project, active, current, pinned

func FolderOutput

func FolderOutput(opts ...Option) templ.Component

FolderOutput creates a folder-output icon Tags: directory, import, export

func FolderPen

func FolderPen(opts ...Option) templ.Component

FolderPen creates a folder-pen icon Tags: directory, rename

func FolderPlus

func FolderPlus(opts ...Option) templ.Component

FolderPlus creates a folder-plus icon Tags: directory, add, create, new

func FolderRoot

func FolderRoot(opts ...Option) templ.Component

FolderRoot creates a folder-root icon Tags: directory, root, project, git, repo

func FolderSearch

func FolderSearch(opts ...Option) templ.Component

FolderSearch creates a folder-search icon Tags: directory, search, find, lost, browser, lens

func FolderSearch2

func FolderSearch2(opts ...Option) templ.Component

FolderSearch2 creates a folder-search-2 icon Tags: directory, search, find, lost, browser, lens

func FolderSymlink(opts ...Option) templ.Component

FolderSymlink creates a folder-symlink icon Tags: directory, symlink, symbolic, link

func FolderSync

func FolderSync(opts ...Option) templ.Component

FolderSync creates a folder-sync icon Tags: directory, synchronize, synchronise, refresh, reconnect, transfer, backup

func FolderTree

func FolderTree(opts ...Option) templ.Component

FolderTree creates a folder-tree icon Tags: directory, tree, browser

func FolderUp

func FolderUp(opts ...Option) templ.Component

FolderUp creates a folder-up icon Tags: directory, upload, import, export

func FolderX

func FolderX(opts ...Option) templ.Component

FolderX creates a folder-x icon Tags: directory, remove, delete

func Folders

func Folders(opts ...Option) templ.Component

Folders creates a folders icon Tags: multiple, copy, directories

func Footprints

func Footprints(opts ...Option) templ.Component

Footprints creates a footprints icon Tags: steps, walking, foot, feet, trail, shoe

func Forklift

func Forklift(opts ...Option) templ.Component

Forklift creates a forklift icon Tags: vehicle, transport, logistics

func Form

func Form(opts ...Option) templ.Component

Form creates a form icon Tags: document, page, file, layout, paper, stub, formality, structure, template, inputs, design, components

func Forward

func Forward(opts ...Option) templ.Component

Forward creates a forward icon Tags: send, share, email

func Frame

func Frame(opts ...Option) templ.Component

Frame creates a frame icon Tags: logo, design, tool

func Framer

func Framer(opts ...Option) templ.Component

Framer creates a framer icon Tags: logo, design, tool

func Frown

func Frown(opts ...Option) templ.Component

Frown creates a frown icon Tags: emoji, face, bad, sad, emotion

func Fuel

func Fuel(opts ...Option) templ.Component

Fuel creates a fuel icon Tags: filling-station, gas, petrol, tank

func Fullscreen

func Fullscreen(opts ...Option) templ.Component

Fullscreen creates a fullscreen icon Tags: expand, zoom, preview, focus, camera, lens, image

func Funnel

func Funnel(opts ...Option) templ.Component

Funnel creates a funnel icon Tags: filter, hopper

func FunnelPlus

func FunnelPlus(opts ...Option) templ.Component

FunnelPlus creates a funnel-plus icon Tags: filter, hopper, add, create, new

func FunnelX

func FunnelX(opts ...Option) templ.Component

FunnelX creates a funnel-x icon Tags: filter, hopper, remove, delete

func GalleryHorizontal

func GalleryHorizontal(opts ...Option) templ.Component

GalleryHorizontal creates a gallery-horizontal icon Tags: carousel, pictures, images, scroll, swipe, album, portfolio

func GalleryHorizontalEnd

func GalleryHorizontalEnd(opts ...Option) templ.Component

GalleryHorizontalEnd creates a gallery-horizontal-end icon Tags: carousel, pictures, images, scroll, swipe, album, portfolio, history, versions, backup, time machine

func GalleryThumbnails

func GalleryThumbnails(opts ...Option) templ.Component

GalleryThumbnails creates a gallery-thumbnails icon Tags: carousel, pictures, images, album, portfolio, preview

func GalleryVertical

func GalleryVertical(opts ...Option) templ.Component

GalleryVertical creates a gallery-vertical icon Tags: carousel, pictures, images, scroll, swipe, album, portfolio

func GalleryVerticalEnd

func GalleryVerticalEnd(opts ...Option) templ.Component

GalleryVerticalEnd creates a gallery-vertical-end icon Tags: carousel, pictures, images, scroll, swipe, album, portfolio, history, versions, backup, time machine

func Gamepad

func Gamepad(opts ...Option) templ.Component

Gamepad creates a gamepad icon Tags: console

func Gamepad2

func Gamepad2(opts ...Option) templ.Component

Gamepad2 creates a gamepad-2 icon Tags: console

func GamepadDirectional

func GamepadDirectional(opts ...Option) templ.Component

GamepadDirectional creates a gamepad-directional icon Tags: direction, arrow, controller, navigation, button, move, pointer, arrowhead, console, game, gaming

func Gauge

func Gauge(opts ...Option) templ.Component

Gauge creates a gauge icon Tags: dashboard, dial, meter, speed, pressure, measure, level

func Gavel

func Gavel(opts ...Option) templ.Component

Gavel creates a gavel icon Tags: justice, law, court, judgment, legal, hands, penalty, decision, authority, hammer, mallet

func Gem

func Gem(opts ...Option) templ.Component

Gem creates a gem icon Tags: diamond, crystal, ruby, jewellery, price, special, present, gift, ring, wedding, proposal, marriage, rubygems

func GeorgianLari

func GeorgianLari(opts ...Option) templ.Component

GeorgianLari creates a georgian-lari icon Tags: currency, money, payment

func Ghost

func Ghost(opts ...Option) templ.Component

Ghost creates a ghost icon Tags: pac-man, spooky

func Gift

func Gift(opts ...Option) templ.Component

Gift creates a gift icon Tags: present, box, birthday, party

func GitBranch

func GitBranch(opts ...Option) templ.Component

GitBranch creates a git-branch icon Tags: code, version control, vcs, repository

func GitBranchMinus

func GitBranchMinus(opts ...Option) templ.Component

GitBranchMinus creates a git-branch-minus icon Tags: code, version control, vcs, repository, delete, remove, -

func GitBranchPlus

func GitBranchPlus(opts ...Option) templ.Component

GitBranchPlus creates a git-branch-plus icon Tags: code, version control, vcs, repository, add, create, +

func GitCommitHorizontal

func GitCommitHorizontal(opts ...Option) templ.Component

GitCommitHorizontal creates a git-commit-horizontal icon Tags: code, version control, waypoint, stop, station

func GitCommitVertical

func GitCommitVertical(opts ...Option) templ.Component

GitCommitVertical creates a git-commit-vertical icon Tags: code, version control, waypoint, stop, station

func GitCompare

func GitCompare(opts ...Option) templ.Component

GitCompare creates a git-compare icon Tags: code, version control, diff

func GitCompareArrows

func GitCompareArrows(opts ...Option) templ.Component

GitCompareArrows creates a git-compare-arrows icon Tags: code, version control, diff

func GitFork

func GitFork(opts ...Option) templ.Component

GitFork creates a git-fork icon Tags: code, version control

func GitGraph

func GitGraph(opts ...Option) templ.Component

GitGraph creates a git-graph icon Tags: code, version control, commit graph, commits, gitlens

func GitMerge

func GitMerge(opts ...Option) templ.Component

GitMerge creates a git-merge icon Tags: code, version control

func GitPullRequest

func GitPullRequest(opts ...Option) templ.Component

GitPullRequest creates a git-pull-request icon Tags: code, version control, open

func GitPullRequestArrow

func GitPullRequestArrow(opts ...Option) templ.Component

GitPullRequestArrow creates a git-pull-request-arrow icon Tags: code, version control, open

func GitPullRequestClosed

func GitPullRequestClosed(opts ...Option) templ.Component

GitPullRequestClosed creates a git-pull-request-closed icon Tags: code, version control, rejected, closed, cancelled, x

func GitPullRequestCreate

func GitPullRequestCreate(opts ...Option) templ.Component

GitPullRequestCreate creates a git-pull-request-create icon Tags: code, version control, open, plus, add, +

func GitPullRequestCreateArrow

func GitPullRequestCreateArrow(opts ...Option) templ.Component

GitPullRequestCreateArrow creates a git-pull-request-create-arrow icon Tags: code, version control, open, plus, add, +

func GitPullRequestDraft

func GitPullRequestDraft(opts ...Option) templ.Component

GitPullRequestDraft creates a git-pull-request-draft icon Tags: code, version control, open, draft, dashed

func Github

func Github(opts ...Option) templ.Component

Github creates a github icon Tags: logo, version control

func Gitlab

func Gitlab(opts ...Option) templ.Component

Gitlab creates a gitlab icon Tags: logo, version control

func GlassWater

func GlassWater(opts ...Option) templ.Component

GlassWater creates a glass-water icon Tags: beverage, drink, glass, water

func Glasses

func Glasses(opts ...Option) templ.Component

Glasses creates a glasses icon Tags: glasses, spectacles

func Globe

func Globe(opts ...Option) templ.Component

Globe creates a globe icon Tags: world, browser, language, translate

func GlobeLock

func GlobeLock(opts ...Option) templ.Component

GlobeLock creates a globe-lock icon Tags: vpn, private, privacy, network, world, browser, security, encryption, protection, connection

func Goal

func Goal(opts ...Option) templ.Component

Goal creates a goal icon Tags: flag, bullseye

func Gpu

func Gpu(opts ...Option) templ.Component

Gpu creates a gpu icon Tags: processor, cores, technology, computer, chip, circuit, specs, graphics processing unit, video card, display adapter, gddr, rendering, digital image processing, crypto mining

func GraduationCap

func GraduationCap(opts ...Option) templ.Component

GraduationCap creates a graduation-cap icon Tags: school, university, learn, study, mortarboard, education, ceremony, academic, hat, diploma, bachlor's, master's, doctorate

func Grape

func Grape(opts ...Option) templ.Component

Grape creates a grape icon Tags: fruit, wine, food

func Grid2x2

func Grid2x2(opts ...Option) templ.Component

Grid2x2 creates a grid-2x2 icon Tags: table, rows, columns, blocks, plot, land, geometry, measure, size, width, height, distance, surface area, square meter, acre, window, skylight

func Grid2x2Check

func Grid2x2Check(opts ...Option) templ.Component

Grid2x2Check creates a grid-2x2-check icon Tags: table, rows, columns, blocks, plot, land, geometry, measure, data, size, width, height, distance, surface area, square meter, acre

func Grid2x2Plus

func Grid2x2Plus(opts ...Option) templ.Component

Grid2x2Plus creates a grid-2x2-plus icon Tags: table, rows, columns, blocks, plot, land, geometry, measure, data, size, width, height, distance, surface area, square meter, acre

func Grid2x2X

func Grid2x2X(opts ...Option) templ.Component

Grid2x2X creates a grid-2x2-x icon Tags: table, rows, columns, data, blocks, plot, land, geometry, measure, size, width, height, distance, surface area, square meter, acre

func Grid3x2

func Grid3x2(opts ...Option) templ.Component

Grid3x2 creates a grid-3x2 icon Tags: table, rows, columns, blocks, plot, land, geometry, measure, size, width, height, distance, surface area, square meter, acre, window

func Grid3x3

func Grid3x3(opts ...Option) templ.Component

Grid3x3 creates a grid-3x3 icon Tags: table, rows, columns

func Grip

func Grip(opts ...Option) templ.Component

Grip creates a grip icon Tags: grab, dots, handle, move, drag

func GripHorizontal

func GripHorizontal(opts ...Option) templ.Component

GripHorizontal creates a grip-horizontal icon Tags: grab, dots, handle, move, drag

func GripVertical

func GripVertical(opts ...Option) templ.Component

GripVertical creates a grip-vertical icon Tags: grab, dots, handle, move, drag

func Group

func Group(opts ...Option) templ.Component

Group creates a group icon Tags: cubes, packages, parts, units, collection, cluster, gather, dashed

func Guitar

func Guitar(opts ...Option) templ.Component

Guitar creates a guitar icon Tags: acoustic, instrument, strings, riff, rock, band, country, concert, performance, play, lead, loud, music, audio, sound, noise

func Ham

func Ham(opts ...Option) templ.Component

Ham creates a ham icon Tags: food, pork, pig, meat, bone, hock, knuckle, gammon, cured

func Hamburger

func Hamburger(opts ...Option) templ.Component

Hamburger creates a hamburger icon Tags: burger, cheeseburger, meat, beef, patty, bun, fast food, junk food, takeaway, takeout, snack, dish, restaurant, lunch, meal, savory, savoury, cookery, cooking, grilled, barbecue, barbeque, bbq, lettuce, tomato, relish, pickles, onions, ketchup, mustard, mayonnaise

func Hammer

func Hammer(opts ...Option) templ.Component

Hammer creates a hammer icon Tags: mallet, nails, diy, toolbox, build, construction

func Hand

func Hand(opts ...Option) templ.Component

Hand creates a hand icon Tags: wave, move, mouse, grab

func HandCoins

func HandCoins(opts ...Option) templ.Component

HandCoins creates a hand-coins icon Tags: savings, banking, money, finance, offers, mortgage, payment, received, wage, payroll, allowance, pocket money, handout, pennies

func HandFist

func HandFist(opts ...Option) templ.Component

HandFist creates a hand-fist icon Tags: clench, strength, power, unity, solidarity, rebellion, victory, triumph, support, fight, combat, brawl

func HandGrab

func HandGrab(opts ...Option) templ.Component

HandGrab creates a hand-grab icon Tags: hand

func HandHeart

func HandHeart(opts ...Option) templ.Component

HandHeart creates a hand-heart icon Tags: love, like, emotion

func HandHelping

func HandHelping(opts ...Option) templ.Component

HandHelping creates a hand-helping icon Tags: agreement, help, proposal, charity, begging, terms

func HandMetal

func HandMetal(opts ...Option) templ.Component

HandMetal creates a hand-metal icon Tags: rock

func HandPlatter

func HandPlatter(opts ...Option) templ.Component

HandPlatter creates a hand-platter icon Tags: waiter, waitress, restaurant, table service, served, dinner, dining, meal, course, luxury

func Handbag

func Handbag(opts ...Option) templ.Component

Handbag creates a handbag icon Tags: bag, baggage, carry, clutch, fashion, luggage, purse, tote, travel

func Handshake

func Handshake(opts ...Option) templ.Component

Handshake creates a handshake icon Tags: agreement, partnership, deal, business, assistance, cooperation, friendship, union, terms

func HardDrive

func HardDrive(opts ...Option) templ.Component

HardDrive creates a hard-drive icon Tags: computer, server, memory, data, ssd, disk, hard disk

func HardDriveDownload

func HardDriveDownload(opts ...Option) templ.Component

HardDriveDownload creates a hard-drive-download icon Tags: computer, server, memory, data, ssd, disk, hard disk, save

func HardDriveUpload

func HardDriveUpload(opts ...Option) templ.Component

HardDriveUpload creates a hard-drive-upload icon Tags: computer, server, memory, data, ssd, disk, hard disk, save

func HardHat

func HardHat(opts ...Option) templ.Component

HardHat creates a hard-hat icon Tags: helmet, construction, safety, savety

func Hash

func Hash(opts ...Option) templ.Component

Hash creates a hash icon Tags: hashtag, number, pound

func HatGlasses

func HatGlasses(opts ...Option) templ.Component

HatGlasses creates a hat-glasses icon Tags: incognito, disguise, costume, masked, anonymous, anonymity, privacy, private browsing, stealth, hidden, undercover, cloak, invisible, ghost, spy, agent, detective, identity, cap, fedora, spectacles, shades, sunglasses, eyewear

func Haze

func Haze(opts ...Option) templ.Component

Haze creates a haze icon Tags: mist, fog

func Hd

func Hd(opts ...Option) templ.Component

Hd creates a hd icon Tags: tv, resolution, video, high definition, 720p, 1080p

func HdmiPort

func HdmiPort(opts ...Option) templ.Component

HdmiPort creates a hdmi-port icon Tags: socket, plug, slot, controller, connector, interface, console, signal, audio, video, visual, av, data, input, output

func Heading

func Heading(opts ...Option) templ.Component

Heading creates a heading icon Tags: h1, html, markup, markdown

func Heading1

func Heading1(opts ...Option) templ.Component

Heading1 creates a heading-1 icon Tags: h1, html, markup, markdown

func Heading2

func Heading2(opts ...Option) templ.Component

Heading2 creates a heading-2 icon Tags: h2, html, markup, markdown

func Heading3

func Heading3(opts ...Option) templ.Component

Heading3 creates a heading-3 icon Tags: h3, html, markup, markdown

func Heading4

func Heading4(opts ...Option) templ.Component

Heading4 creates a heading-4 icon Tags: h4, html, markup, markdown

func Heading5

func Heading5(opts ...Option) templ.Component

Heading5 creates a heading-5 icon Tags: h5, html, markup, markdown

func Heading6

func Heading6(opts ...Option) templ.Component

Heading6 creates a heading-6 icon Tags: h6, html, markup, markdown

func HeadphoneOff

func HeadphoneOff(opts ...Option) templ.Component

HeadphoneOff creates a headphone-off icon Tags: music, audio, sound, mute, off

func Headphones

func Headphones(opts ...Option) templ.Component

Headphones creates a headphones icon Tags: music, audio, sound

func Headset

func Headset(opts ...Option) templ.Component

Headset creates a headset icon Tags: music, audio, sound, gaming, headphones, headset, call, center, phone, telephone, voip, video

func Heart

func Heart(opts ...Option) templ.Component

Heart creates a heart icon Tags: like, love, emotion, suit, playing, cards

func HeartCrack

func HeartCrack(opts ...Option) templ.Component

HeartCrack creates a heart-crack icon Tags: heartbreak, sadness, emotion

func HeartHandshake

func HeartHandshake(opts ...Option) templ.Component

HeartHandshake creates a heart-handshake icon Tags: agreement, charity, help, deal, terms, emotion, together, handshake

func HeartMinus

func HeartMinus(opts ...Option) templ.Component

HeartMinus creates a heart-minus icon Tags: unlike, unfavorite, remove, damage, ui & ux

func HeartOff

func HeartOff(opts ...Option) templ.Component

HeartOff creates a heart-off icon Tags: unlike, dislike, hate, emotion

func HeartPlus

func HeartPlus(opts ...Option) templ.Component

HeartPlus creates a heart-plus icon Tags: plus, like, favorite, add, health, support

func HeartPulse

func HeartPulse(opts ...Option) templ.Component

HeartPulse creates a heart-pulse icon Tags: heartbeat, pulse, health, medical, blood pressure, cardiac, systole, diastole

func Heater

func Heater(opts ...Option) templ.Component

Heater creates a heater icon Tags: heating, warmth, comfort, fire, stove, electric, electronics, amenities

func Helicopter

func Helicopter(opts ...Option) templ.Component

Helicopter creates a helicopter icon Tags: transport, flying, rotor, aviation, helipad, gear, flyer, technology, helicopter, aircraft, vehicle

func Hexagon

func Hexagon(opts ...Option) templ.Component

Hexagon creates a hexagon icon Tags: shape, node.js, logo

func Highlighter

func Highlighter(opts ...Option) templ.Component

Highlighter creates a highlighter icon Tags: mark, text

func History

func History(opts ...Option) templ.Component

History creates a history icon Tags: time, redo, undo, rewind, timeline, version, time machine, backup, rotate, ccw

func Home

func Home(opts ...Option) templ.Component

Home creates a home icon (alias for House)

func Hop

func Hop(opts ...Option) templ.Component

Hop creates a hop icon Tags: beer, brewery, drink

func HopOff

func HopOff(opts ...Option) templ.Component

HopOff creates a hop-off icon Tags: beer, brewery, drink, hop free, allergy, intolerance, diet

func Hospital

func Hospital(opts ...Option) templ.Component

Hospital creates a hospital icon Tags: infirmary, sanatorium, healthcare, doctor, hospice, clinic, emergency room, ward, building, medical, vet

func Hotel

func Hotel(opts ...Option) templ.Component

Hotel creates a hotel icon Tags: building, hostel, motel, inn

func Hourglass

func Hourglass(opts ...Option) templ.Component

Hourglass creates a hourglass icon Tags: timer, time, sandglass

func House

func House(opts ...Option) templ.Component

House creates a house icon Tags: home, living, building, residence, architecture

func HouseHeart

func HouseHeart(opts ...Option) templ.Component

HouseHeart creates a house-heart icon Tags: home sweet home, abode, building, residence, healthy living, lifestyle

func HousePlug

func HousePlug(opts ...Option) templ.Component

HousePlug creates a house-plug icon Tags: home, living, building, residence, architecture, autarky, energy

func HousePlus

func HousePlus(opts ...Option) templ.Component

HousePlus creates a house-plus icon Tags: home, living, medical, new, addition, building, residence, architecture

func HouseWifi

func HouseWifi(opts ...Option) templ.Component

HouseWifi creates a house-wifi icon Tags: home, living, building, wifi, connectivity

func IceCreamBowl

func IceCreamBowl(opts ...Option) templ.Component

IceCreamBowl creates a ice-cream-bowl icon Tags: gelato, food, dessert, dish, restaurant, course, meal

func IceCreamCone

func IceCreamCone(opts ...Option) templ.Component

IceCreamCone creates a ice-cream-cone icon Tags: gelato, food

func Icon

func Icon(pathData string, opts ...Option) templ.Component

Icon creates an icon wrapper around SVG content The pathData should be SVG path d attribute content

Example:

icon := icons.Icon(
    "M5 12h14",  // SVG path data
    icons.WithSize(20),
    icons.WithColor("blue"),
)

func IdCard

func IdCard(opts ...Option) templ.Component

IdCard creates a id-card icon Tags: card, badge, identity, authentication, secure

func IdCardLanyard

func IdCardLanyard(opts ...Option) templ.Component

IdCardLanyard creates a id-card-lanyard icon Tags: id-card, id-card-lanyard, identity, employee, gate-pass, badge

func Image

func Image(opts ...Option) templ.Component

Image creates a image icon Tags: picture, photo

func ImageDown

func ImageDown(opts ...Option) templ.Component

ImageDown creates a image-down icon Tags: picture, photo, download, save, export

func ImageMinus

func ImageMinus(opts ...Option) templ.Component

ImageMinus creates a image-minus icon Tags: remove, delete

func ImageOff

func ImageOff(opts ...Option) templ.Component

ImageOff creates a image-off icon Tags: picture, photo

func ImagePlay

func ImagePlay(opts ...Option) templ.Component

ImagePlay creates a image-play icon Tags: picture, gif, photo

func ImagePlus

func ImagePlus(opts ...Option) templ.Component

ImagePlus creates a image-plus icon Tags: add, create, picture

func ImageUp

func ImageUp(opts ...Option) templ.Component

ImageUp creates a image-up icon Tags: picture, photo, upload, import

func ImageUpscale

func ImageUpscale(opts ...Option) templ.Component

ImageUpscale creates a image-upscale icon Tags: resize, picture, sharpen, increase

func Images

func Images(opts ...Option) templ.Component

Images creates a images icon Tags: picture, photo, multiple, copy, gallery, album, collection, slideshow, showcase

func ImportIcon

func ImportIcon(opts ...Option) templ.Component

ImportIcon creates a import icon Tags: save

func Inbox

func Inbox(opts ...Option) templ.Component

Inbox creates a inbox icon Tags: email

func IndianRupee

func IndianRupee(opts ...Option) templ.Component

IndianRupee creates a indian-rupee icon Tags: currency, money, payment

func Infinity

func Infinity(opts ...Option) templ.Component

Infinity creates a infinity icon Tags: unlimited, forever, loop, math

func Info

func Info(opts ...Option) templ.Component

Info creates a info icon Tags: help

func InspectionPanel

func InspectionPanel(opts ...Option) templ.Component

InspectionPanel creates a inspection-panel icon Tags: access, cover, tile, metal, materials, screws

func Instagram

func Instagram(opts ...Option) templ.Component

Instagram creates a instagram icon Tags: logo, camera, social

func Italic

func Italic(opts ...Option) templ.Component

Italic creates a italic icon Tags: oblique, text, format

func IterationCcw

func IterationCcw(opts ...Option) templ.Component

IterationCcw creates a iteration-ccw icon Tags: arrow, right

func IterationCw

func IterationCw(opts ...Option) templ.Component

IterationCw creates a iteration-cw icon Tags: arrow, left

func JapaneseYen

func JapaneseYen(opts ...Option) templ.Component

JapaneseYen creates a japanese-yen icon Tags: currency, money, payment

func Joystick

func Joystick(opts ...Option) templ.Component

Joystick creates a joystick icon Tags: game, console, control stick

func Kanban

func Kanban(opts ...Option) templ.Component

Kanban creates a kanban icon Tags: projects, manage, overview, board, tickets, issues, roadmap, plan, intentions, productivity, work, agile, code, coding

func Kayak

func Kayak(opts ...Option) templ.Component

Kayak creates a kayak icon Tags: kayak, boat, paddle, water, sport, recreation, adventure, outdoors, equipment, lake, ocean

func Key

func Key(opts ...Option) templ.Component

Key creates a key icon Tags: password, login, authentication, secure, unlock, keychain, key ring, fob

func KeyRound

func KeyRound(opts ...Option) templ.Component

KeyRound creates a key-round icon Tags: password, login, authentication, secure, unlock

func KeySquare

func KeySquare(opts ...Option) templ.Component

KeySquare creates a key-square icon Tags: password, login, authentication, secure, unlock, car key

func Keyboard

func Keyboard(opts ...Option) templ.Component

Keyboard creates a keyboard icon Tags: layout, spell, settings, mouse

func KeyboardMusic

func KeyboardMusic(opts ...Option) templ.Component

KeyboardMusic creates a keyboard-music icon Tags: music, audio, sound, noise, notes, keys, chord, octave, midi, controller, instrument, electric, signal, digital, studio, production, producer, pianist, piano, play, performance, concert

func KeyboardOff

func KeyboardOff(opts ...Option) templ.Component

KeyboardOff creates a keyboard-off icon Tags: unkeys, layout, spell, settings, mouse

func Lamp

func Lamp(opts ...Option) templ.Component

Lamp creates a lamp icon Tags: lighting, household, home, furniture

func LampCeiling

func LampCeiling(opts ...Option) templ.Component

LampCeiling creates a lamp-ceiling icon Tags: lighting, household, home, furniture

func LampDesk

func LampDesk(opts ...Option) templ.Component

LampDesk creates a lamp-desk icon Tags: lighting, household, office, desk, home, furniture

func LampFloor

func LampFloor(opts ...Option) templ.Component

LampFloor creates a lamp-floor icon Tags: lighting, household, floor, home, furniture

func LampWallDown

func LampWallDown(opts ...Option) templ.Component

LampWallDown creates a lamp-wall-down icon Tags: lighting, household, wall, home, furniture

func LampWallUp

func LampWallUp(opts ...Option) templ.Component

LampWallUp creates a lamp-wall-up icon Tags: lighting, household, wall, home, furniture

func LandPlot

func LandPlot(opts ...Option) templ.Component

LandPlot creates a land-plot icon Tags: area, surface, square metres, allotment, parcel, property, plane, acres, measure, distance, isometric, flag, golf course, hole

func Landmark

func Landmark(opts ...Option) templ.Component

Landmark creates a landmark icon Tags: bank, building, capitol, finance, money, museum, art gallery, hall, institute, pediment, portico, columns, pillars, classical, architecture, government, institution

func Languages

func Languages(opts ...Option) templ.Component

Languages creates a languages icon Tags: translate

func Laptop

func Laptop(opts ...Option) templ.Component

Laptop creates a laptop icon Tags: computer, screen, remote

func LaptopMinimal

func LaptopMinimal(opts ...Option) templ.Component

LaptopMinimal creates a laptop-minimal icon Tags: computer, screen, remote

func LaptopMinimalCheck

func LaptopMinimalCheck(opts ...Option) templ.Component

LaptopMinimalCheck creates a laptop-minimal-check icon Tags: computer, screen, remote, success, done, todo, tick, complete, task

func Lasso

func Lasso(opts ...Option) templ.Component

Lasso creates a lasso icon Tags: select, cursor

func LassoSelect

func LassoSelect(opts ...Option) templ.Component

LassoSelect creates a lasso-select icon Tags: select, cursor

func Laugh

func Laugh(opts ...Option) templ.Component

Laugh creates a laugh icon Tags: emoji, face, happy, good, emotion

func Layers

func Layers(opts ...Option) templ.Component

Layers creates a layers icon Tags: stack, pile, pages, sheets, paperwork, copies, copy

func Layers2

func Layers2(opts ...Option) templ.Component

Layers2 creates a layers-2 icon Tags: stack, pile, pages, sheets, paperwork, copies, copy, duplicate, double, shortcuts

func LayersPlus

func LayersPlus(opts ...Option) templ.Component

LayersPlus creates a layers-plus icon Tags: stack, layers, add, new, increase, create, positive, copy, upgrade

func LayoutDashboard

func LayoutDashboard(opts ...Option) templ.Component

LayoutDashboard creates a layout-dashboard icon Tags: masonry, brick

func LayoutGrid

func LayoutGrid(opts ...Option) templ.Component

LayoutGrid creates a layout-grid icon Tags: app, home, start

func LayoutList

func LayoutList(opts ...Option) templ.Component

LayoutList creates a layout-list icon Tags: todo, tasks, items, pending, image, photo

func LayoutPanelLeft

func LayoutPanelLeft(opts ...Option) templ.Component

LayoutPanelLeft creates a layout-panel-left icon Tags: app, home, start, grid

func LayoutPanelTop

func LayoutPanelTop(opts ...Option) templ.Component

LayoutPanelTop creates a layout-panel-top icon Tags: window, webpage, block, section, grid, template, structure

func LayoutTemplate

func LayoutTemplate(opts ...Option) templ.Component

LayoutTemplate creates a layout-template icon Tags: window, webpage, block, section

func Leaf

func Leaf(opts ...Option) templ.Component

Leaf creates a leaf icon Tags: sustainability, nature, energy, plant, autumn

func LeafyGreen

func LeafyGreen(opts ...Option) templ.Component

LeafyGreen creates a leafy-green icon Tags: salad, lettuce, vegetable, chard, cabbage, bok choy

func Lectern

func Lectern(opts ...Option) templ.Component

Lectern creates a lectern icon Tags: pulpit, podium, stand

func Library

func Library(opts ...Option) templ.Component

Library creates a library icon Tags: books, reading, written, authors, stories, fiction, novels, information, knowledge, education, high school, university, college, academy, learning, study, research, collection, vinyl, records, albums, music, package

func LibraryBig

func LibraryBig(opts ...Option) templ.Component

LibraryBig creates a library-big icon Tags: books, reading, written, authors, stories, fiction, novels, information, knowledge, education, high school, university, college, academy, learning, study, research, collection, vinyl, records, albums, music, package

func LifeBuoy

func LifeBuoy(opts ...Option) templ.Component

LifeBuoy creates a life-buoy icon Tags: preserver, life belt, lifesaver, help, rescue, ship, ring, raft, inflatable, wheel, donut

func Ligature

func Ligature(opts ...Option) templ.Component

Ligature creates a ligature icon Tags: text, font, typography, alternates, alternatives

func Lightbulb

func Lightbulb(opts ...Option) templ.Component

Lightbulb creates a lightbulb icon Tags: idea, bright, lights

func LightbulbOff

func LightbulbOff(opts ...Option) templ.Component

LightbulbOff creates a lightbulb-off icon Tags: lights

func LineSquiggle

func LineSquiggle(opts ...Option) templ.Component

LineSquiggle creates a line-squiggle icon Tags: line, snakes, annotate, curve, doodle, stroke, pen, tool, gesture, draw, wave, art, road

func Link(opts ...Option) templ.Component

Link creates a link icon Tags: chain, url

func Link2

func Link2(opts ...Option) templ.Component

Link2 creates a link-2 icon Tags: chain, url

func Link2Off

func Link2Off(opts ...Option) templ.Component

Link2Off creates a link-2-off icon Tags: unchain, chain

func Linkedin

func Linkedin(opts ...Option) templ.Component

Linkedin creates a linkedin icon Tags: logo, social media, social

func List

func List(opts ...Option) templ.Component

List creates a list icon Tags: options

func ListCheck

func ListCheck(opts ...Option) templ.Component

ListCheck creates a list-check icon Tags: done, check, tick, complete, list, to-do, bom

func ListChecks

func ListChecks(opts ...Option) templ.Component

ListChecks creates a list-checks icon Tags: todo, done, check, tick, complete, tasks, items, pending

func ListChevronsDownUp

func ListChevronsDownUp(opts ...Option) templ.Component

ListChevronsDownUp creates a list-chevrons-down-up icon Tags: options, items, collapse, expand, details, disclosure, show, hide, toggle, accordion, more, less, fold, unfold, vertical

func ListChevronsUpDown

func ListChevronsUpDown(opts ...Option) templ.Component

ListChevronsUpDown creates a list-chevrons-up-down icon Tags: options, items, collapse, expand, details, disclosure, show, hide, toggle, accordion, more, less, fold, unfold, vertical

func ListCollapse

func ListCollapse(opts ...Option) templ.Component

ListCollapse creates a list-collapse icon Tags: items, collapse, expand, details, disclosure, show, hide, toggle, accordion, more, less, fold, unfold

func ListEnd

func ListEnd(opts ...Option) templ.Component

ListEnd creates a list-end icon Tags: queue, bottom, end, playlist

func ListFilter

func ListFilter(opts ...Option) templ.Component

ListFilter creates a list-filter icon Tags: options

func ListFilterPlus

func ListFilterPlus(opts ...Option) templ.Component

ListFilterPlus creates a list-filter-plus icon Tags: filter, plus, options, add

func ListIndentDecrease

func ListIndentDecrease(opts ...Option) templ.Component

ListIndentDecrease creates a list-indent-decrease icon Tags: text, tab

func ListIndentIncrease

func ListIndentIncrease(opts ...Option) templ.Component

ListIndentIncrease creates a list-indent-increase icon Tags: text, tab

func ListMinus

func ListMinus(opts ...Option) templ.Component

ListMinus creates a list-minus icon Tags: playlist, remove, song, subtract, delete, unqueue

func ListMusic

func ListMusic(opts ...Option) templ.Component

ListMusic creates a list-music icon Tags: playlist, queue, music, audio, playback

func ListOrdered

func ListOrdered(opts ...Option) templ.Component

ListOrdered creates a list-ordered icon Tags: number, order, queue

func ListPlus

func ListPlus(opts ...Option) templ.Component

ListPlus creates a list-plus icon Tags: playlist, add, song, track, new

func ListRestart

func ListRestart(opts ...Option) templ.Component

ListRestart creates a list-restart icon Tags: reset, refresh, reload, playlist, replay

func ListStart

func ListStart(opts ...Option) templ.Component

ListStart creates a list-start icon Tags: queue, top, start, next, playlist

func ListTodo

func ListTodo(opts ...Option) templ.Component

ListTodo creates a list-todo icon Tags: todo, done, check, tick, complete, tasks, items, pending

func ListTree

func ListTree(opts ...Option) templ.Component

ListTree creates a list-tree icon Tags: tree, browser

func ListVideo

func ListVideo(opts ...Option) templ.Component

ListVideo creates a list-video icon Tags: playlist, video, playback

func ListX

func ListX(opts ...Option) templ.Component

ListX creates a list-x icon Tags: playlist, subtract, remove, delete, unqueue

func Loader

func Loader(opts ...Option) templ.Component

Loader creates a loader icon Tags: loading, wait, busy, progress, spinner, spinning, throbber

func LoaderCircle

func LoaderCircle(opts ...Option) templ.Component

LoaderCircle creates a loader-circle icon Tags: loading, wait, busy, progress, spinner, spinning, throbber, circle

func LoaderPinwheel

func LoaderPinwheel(opts ...Option) templ.Component

LoaderPinwheel creates a loader-pinwheel icon Tags: loading, wait, busy, progress, throbber, spinner, spinning, beach ball, frozen, freeze

func Locate

func Locate(opts ...Option) templ.Component

Locate creates a locate icon Tags: map, gps, location, cross

func LocateFixed

func LocateFixed(opts ...Option) templ.Component

LocateFixed creates a locate-fixed icon Tags: map, gps, location, cross

func LocateOff

func LocateOff(opts ...Option) templ.Component

LocateOff creates a locate-off icon Tags: map, gps, location, cross

func Lock

func Lock(opts ...Option) templ.Component

Lock creates a lock icon Tags: security, password, secure, admin

func LockKeyhole

func LockKeyhole(opts ...Option) templ.Component

LockKeyhole creates a lock-keyhole icon Tags: security, password, secure, admin

func LockKeyholeOpen

func LockKeyholeOpen(opts ...Option) templ.Component

LockKeyholeOpen creates a lock-keyhole-open icon Tags: security

func LockOpen

func LockOpen(opts ...Option) templ.Component

LockOpen creates a lock-open icon Tags: security

func LogIn

func LogIn(opts ...Option) templ.Component

LogIn creates a log-in icon Tags: sign in, arrow, enter, auth

func LogOut

func LogOut(opts ...Option) templ.Component

LogOut creates a log-out icon Tags: sign out, arrow, exit, auth

func Logs

func Logs(opts ...Option) templ.Component

Logs creates a logs icon Tags: options, list, menu, order, queue, tasks, logs

func Lollipop

func Lollipop(opts ...Option) templ.Component

Lollipop creates a lollipop icon Tags: lolly, candy, sugar, food, sweet, dessert, spiral

func Luggage

func Luggage(opts ...Option) templ.Component

Luggage creates a luggage icon Tags: baggage, luggage, travel, suitcase

func Magnet

func Magnet(opts ...Option) templ.Component

Magnet creates a magnet icon Tags: horseshoe, lock, science, snap

func Mail

func Mail(opts ...Option) templ.Component

Mail creates a mail icon Tags: email, message, letter, unread

func MailCheck

func MailCheck(opts ...Option) templ.Component

MailCheck creates a mail-check icon Tags: email, message, letter, subscribe, delivered, success, read, done, todo, tick, complete, task

func MailMinus

func MailMinus(opts ...Option) templ.Component

MailMinus creates a mail-minus icon Tags: email, message, letter, remove, delete

func MailOpen

func MailOpen(opts ...Option) templ.Component

MailOpen creates a mail-open icon Tags: email, message, letter, read

func MailPlus

func MailPlus(opts ...Option) templ.Component

MailPlus creates a mail-plus icon Tags: email, message, letter, add, create, new, compose

func MailQuestionMark

func MailQuestionMark(opts ...Option) templ.Component

MailQuestionMark creates a mail-question-mark icon Tags: email, message, letter, delivery, undelivered

func MailSearch

func MailSearch(opts ...Option) templ.Component

MailSearch creates a mail-search icon Tags: email, message, letter, search, lens

func MailWarning

func MailWarning(opts ...Option) templ.Component

MailWarning creates a mail-warning icon Tags: email, message, letter, delivery error, exclamation mark

func MailX

func MailX(opts ...Option) templ.Component

MailX creates a mail-x icon Tags: email, message, letter, remove, delete

func Mailbox

func Mailbox(opts ...Option) templ.Component

Mailbox creates a mailbox icon Tags: emails, messages, letters, mailing list, newsletter

func Mails

func Mails(opts ...Option) templ.Component

Mails creates a mails icon Tags: emails, messages, letters, multiple, mailing list, newsletter, copy

func MapIcon

func MapIcon(opts ...Option) templ.Component

MapIcon creates a map icon Tags: location, navigation, travel

func MapMinus

func MapMinus(opts ...Option) templ.Component

MapMinus creates a map-minus icon Tags: location, navigation, travel, drop, delete, remove, erase

func MapPin

func MapPin(opts ...Option) templ.Component

MapPin creates a map-pin icon Tags: location, waypoint, marker, drop

func MapPinCheck

func MapPinCheck(opts ...Option) templ.Component

MapPinCheck creates a map-pin-check icon Tags: location, waypoint, marker, drop, done, tick, complete, task, added

func MapPinCheckInside

func MapPinCheckInside(opts ...Option) templ.Component

MapPinCheckInside creates a map-pin-check-inside icon Tags: location, waypoint, marker, drop, done, tick, complete, task, added

func MapPinHouse

func MapPinHouse(opts ...Option) templ.Component

MapPinHouse creates a map-pin-house icon Tags: location, waypoint, marker, drop, home, living, building, residence, architecture, address, poi, real estate, property, navigation, destination, geolocation, place, landmark

func MapPinMinus

func MapPinMinus(opts ...Option) templ.Component

MapPinMinus creates a map-pin-minus icon Tags: location, waypoint, marker, drop, delete, remove, erase

func MapPinMinusInside

func MapPinMinusInside(opts ...Option) templ.Component

MapPinMinusInside creates a map-pin-minus-inside icon Tags: location, waypoint, marker, drop, delete, remove, erase

func MapPinOff

func MapPinOff(opts ...Option) templ.Component

MapPinOff creates a map-pin-off icon Tags: location, waypoint, marker, remove

func MapPinPen

func MapPinPen(opts ...Option) templ.Component

MapPinPen creates a map-pin-pen icon Tags: location, waypoint, marker, drop, edit

func MapPinPlus

func MapPinPlus(opts ...Option) templ.Component

MapPinPlus creates a map-pin-plus icon Tags: location, waypoint, marker, drop, add, create, new

func MapPinPlusInside

func MapPinPlusInside(opts ...Option) templ.Component

MapPinPlusInside creates a map-pin-plus-inside icon Tags: location, waypoint, marker, drop, add, create, new

func MapPinX

func MapPinX(opts ...Option) templ.Component

MapPinX creates a map-pin-x icon Tags: location, waypoint, marker, drop, delete, remove, erase

func MapPinXInside

func MapPinXInside(opts ...Option) templ.Component

MapPinXInside creates a map-pin-x-inside icon Tags: location, waypoint, marker, drop, delete, remove, erase

func MapPinned

func MapPinned(opts ...Option) templ.Component

MapPinned creates a map-pinned icon Tags: location, waypoint, marker, drop

func MapPlus

func MapPlus(opts ...Option) templ.Component

MapPlus creates a map-plus icon Tags: location, navigation, travel, new, add, create

func Mars

func Mars(opts ...Option) templ.Component

Mars creates a mars icon Tags: gender, sex, male, masculine, man, boy

func MarsStroke

func MarsStroke(opts ...Option) templ.Component

MarsStroke creates a mars-stroke icon Tags: gender, androgyne, transgender

func Martini

func Martini(opts ...Option) templ.Component

Martini creates a martini icon Tags: cocktail, alcohol, beverage, bar, drink, glass

func Maximize

func Maximize(opts ...Option) templ.Component

Maximize creates a maximize icon Tags: fullscreen, expand, dashed

func Maximize2

func Maximize2(opts ...Option) templ.Component

Maximize2 creates a maximize-2 icon Tags: fullscreen, arrows, expand

func Medal

func Medal(opts ...Option) templ.Component

Medal creates a medal icon Tags: prize, sports, winner, trophy, award, achievement

func Megaphone

func Megaphone(opts ...Option) templ.Component

Megaphone creates a megaphone icon Tags: advertisement, announcement, attention, alert, loudspeaker, megaphone, notification

func MegaphoneOff

func MegaphoneOff(opts ...Option) templ.Component

MegaphoneOff creates a megaphone-off icon Tags: advertisement, announcement, attention, alert, loudspeaker, megaphone, notification, disable, silent

func Meh

func Meh(opts ...Option) templ.Component

Meh creates a meh icon Tags: emoji, face, neutral, emotion

func MemoryStick

func MemoryStick(opts ...Option) templ.Component

MemoryStick creates a memory-stick icon Tags: ram, random access, technology, computer, chip, circuit, specs, capacity, gigabytes, gb

func Menu(opts ...Option) templ.Component

Menu creates a menu icon Tags: bars, navigation, hamburger, options

func Merge

func Merge(opts ...Option) templ.Component

Merge creates a merge icon Tags: combine, join, unite

func MessageCircle

func MessageCircle(opts ...Option) templ.Component

MessageCircle creates a message-circle icon Tags: comment, chat, conversation, dialog, feedback, speech bubble

func MessageCircleCode

func MessageCircleCode(opts ...Option) templ.Component

MessageCircleCode creates a message-circle-code icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, code review, coding

func MessageCircleDashed

func MessageCircleDashed(opts ...Option) templ.Component

MessageCircleDashed creates a message-circle-dashed icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, draft

func MessageCircleHeart

func MessageCircleHeart(opts ...Option) templ.Component

MessageCircleHeart creates a message-circle-heart icon Tags: comment, chat, conversation, dialog, feedback, positive, like, love, interest, valentine, dating, date, speech bubble

func MessageCircleMore

func MessageCircleMore(opts ...Option) templ.Component

MessageCircleMore creates a message-circle-more icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, typing, writing, responding, ellipsis, etc, et cetera, ..., …

func MessageCircleOff

func MessageCircleOff(opts ...Option) templ.Component

MessageCircleOff creates a message-circle-off icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, clear, close, delete, remove, cancel, silence, mute, moderate

func MessageCirclePlus

func MessageCirclePlus(opts ...Option) templ.Component

MessageCirclePlus creates a message-circle-plus icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, add

func MessageCircleQuestionMark

func MessageCircleQuestionMark(opts ...Option) templ.Component

MessageCircleQuestionMark creates a message-circle-question-mark icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, help

func MessageCircleReply

func MessageCircleReply(opts ...Option) templ.Component

MessageCircleReply creates a message-circle-reply icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, reply, response

func MessageCircleWarning

func MessageCircleWarning(opts ...Option) templ.Component

MessageCircleWarning creates a message-circle-warning icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, report, abuse, offense, alert, danger, caution, protected, exclamation mark

func MessageCircleX

func MessageCircleX(opts ...Option) templ.Component

MessageCircleX creates a message-circle-x icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, clear, close, delete, remove, cancel, silence, mute, moderate

func MessageSquare

func MessageSquare(opts ...Option) templ.Component

MessageSquare creates a message-square icon Tags: comment, chat, conversation, dialog, feedback, speech bubble

func MessageSquareCode

func MessageSquareCode(opts ...Option) templ.Component

MessageSquareCode creates a message-square-code icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, code review, coding

func MessageSquareDashed

func MessageSquareDashed(opts ...Option) templ.Component

MessageSquareDashed creates a message-square-dashed icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, draft

func MessageSquareDiff

func MessageSquareDiff(opts ...Option) templ.Component

MessageSquareDiff creates a message-square-diff icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, add, patch, difference, plus, minus, plus-minus, math, code review, coding, version control, git

func MessageSquareDot

func MessageSquareDot(opts ...Option) templ.Component

MessageSquareDot creates a message-square-dot icon Tags: unread, unresolved, comment, chat, conversation, dialog, feedback, speech bubble

func MessageSquareHeart

func MessageSquareHeart(opts ...Option) templ.Component

MessageSquareHeart creates a message-square-heart icon Tags: comment, chat, conversation, dialog, feedback, positive, like, love, interest, valentine, dating, date, speech bubble

func MessageSquareLock

func MessageSquareLock(opts ...Option) templ.Component

MessageSquareLock creates a message-square-lock icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, secure, encrypted

func MessageSquareMore

func MessageSquareMore(opts ...Option) templ.Component

MessageSquareMore creates a message-square-more icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, typing, writing, responding, ellipsis, etc, et cetera, ..., …

func MessageSquareOff

func MessageSquareOff(opts ...Option) templ.Component

MessageSquareOff creates a message-square-off icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, clear, close, delete, remove, cancel, silence, mute, moderate

func MessageSquarePlus

func MessageSquarePlus(opts ...Option) templ.Component

MessageSquarePlus creates a message-square-plus icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, add

func MessageSquareQuote

func MessageSquareQuote(opts ...Option) templ.Component

MessageSquareQuote creates a message-square-quote icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, blockquote, quotation, indent, reply, response

func MessageSquareReply

func MessageSquareReply(opts ...Option) templ.Component

MessageSquareReply creates a message-square-reply icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, reply, response

func MessageSquareShare

func MessageSquareShare(opts ...Option) templ.Component

MessageSquareShare creates a message-square-share icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, network, forward

func MessageSquareText

func MessageSquareText(opts ...Option) templ.Component

MessageSquareText creates a message-square-text icon Tags: comment, chat, conversation, dialog, feedback, speech bubble

func MessageSquareWarning

func MessageSquareWarning(opts ...Option) templ.Component

MessageSquareWarning creates a message-square-warning icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, report, abuse, offense, alert, danger, caution, protected, exclamation mark

func MessageSquareX

func MessageSquareX(opts ...Option) templ.Component

MessageSquareX creates a message-square-x icon Tags: comment, chat, conversation, dialog, feedback, speech bubble, clear, close, delete, remove, cancel, silence, mute, moderate

func MessagesSquare

func MessagesSquare(opts ...Option) templ.Component

MessagesSquare creates a messages-square icon Tags: comment, chat, conversation, dialog, feedback, speech bubbles, copy, multiple, discussion, interview, debate

func Mic

func Mic(opts ...Option) templ.Component

Mic creates a mic icon Tags: record, sound, listen, radio, podcast, microphone

func MicOff

func MicOff(opts ...Option) templ.Component

MicOff creates a mic-off icon Tags: record, sound, mute, microphone

func MicVocal

func MicVocal(opts ...Option) templ.Component

MicVocal creates a mic-vocal icon Tags: lyrics, voice, listen, sound, music, radio, podcast, karaoke, singing, microphone

func Microchip

func Microchip(opts ...Option) templ.Component

Microchip creates a microchip icon Tags: processor, cores, technology, computer, chip, integrated circuit, memory, ram, specs, gpu, gigahertz, ghz

func Microscope

func Microscope(opts ...Option) templ.Component

Microscope creates a microscope icon Tags: medical, education, science, imaging, research

func Microwave

func Microwave(opts ...Option) templ.Component

Microwave creates a microwave icon Tags: oven, cooker, toaster oven, bake

func Milestone

func Milestone(opts ...Option) templ.Component

Milestone creates a milestone icon Tags: signpost, direction, right, east, forward, version control, waypoint

func Milk

func Milk(opts ...Option) templ.Component

Milk creates a milk icon Tags: lactose, bottle, beverage, drink, water, diet

func MilkOff

func MilkOff(opts ...Option) templ.Component

MilkOff creates a milk-off icon Tags: lactose free, bottle, beverage, drink, water, allergy, intolerance, diet

func Minimize

func Minimize(opts ...Option) templ.Component

Minimize creates a minimize icon Tags: exit fullscreen, close, shrink

func Minimize2

func Minimize2(opts ...Option) templ.Component

Minimize2 creates a minimize-2 icon Tags: exit fullscreen, arrows, close, shrink

func Minus

func Minus(opts ...Option) templ.Component

Minus creates a minus icon Tags: subtract, remove, decrease, decrement, reduce, negative, calculate, line, divider, separator, horizontal rule, hr, html, markup, markdown, ---, toolbar, operator, code, coding, minimum, downgrade

func Monitor

func Monitor(opts ...Option) templ.Component

Monitor creates a monitor icon Tags: tv, screen, display, virtual machine, vm

func MonitorCheck

func MonitorCheck(opts ...Option) templ.Component

MonitorCheck creates a monitor-check icon Tags: tv, screen, display, desktop, running, active, virtual machine, vm

func MonitorCloud

func MonitorCloud(opts ...Option) templ.Component

MonitorCloud creates a monitor-cloud icon Tags: virtual machine, virtual desktop, vm, vdi, computing, remote work, monitoring, infrastructure, software as a service, saas, workstation, environment, tv, screen, display

func MonitorCog

func MonitorCog(opts ...Option) templ.Component

MonitorCog creates a monitor-cog icon Tags: tv, screen, display, virtual machine, vm, executable, settings, cog, edit, gear, configuration, preferences, system, control panel, network, computing

func MonitorDot

func MonitorDot(opts ...Option) templ.Component

MonitorDot creates a monitor-dot icon Tags: tv, screen, display, desktop, running, active, virtual machine, vm

func MonitorDown

func MonitorDown(opts ...Option) templ.Component

MonitorDown creates a monitor-down icon Tags: tv, screen, display, desktop, download

func MonitorOff

func MonitorOff(opts ...Option) templ.Component

MonitorOff creates a monitor-off icon Tags: share

func MonitorPause

func MonitorPause(opts ...Option) templ.Component

MonitorPause creates a monitor-pause icon Tags: tv, screen, display, desktop, video, movie, film, suspend, hibernate, boot, virtual machine, vm

func MonitorPlay

func MonitorPlay(opts ...Option) templ.Component

MonitorPlay creates a monitor-play icon Tags: tv, screen, display, desktop, video, movie, film, running, start, boot, virtual machine, vm

func MonitorSmartphone

func MonitorSmartphone(opts ...Option) templ.Component

MonitorSmartphone creates a monitor-smartphone icon Tags: smartphone, phone, cellphone, device, mobile, desktop, monitor, responsive, screens

func MonitorSpeaker

func MonitorSpeaker(opts ...Option) templ.Component

MonitorSpeaker creates a monitor-speaker icon Tags: devices, connect, cast

func MonitorStop

func MonitorStop(opts ...Option) templ.Component

MonitorStop creates a monitor-stop icon Tags: tv, screen, display, desktop, video, movie, film, stop, shutdown, virtual machine, vm

func MonitorUp

func MonitorUp(opts ...Option) templ.Component

MonitorUp creates a monitor-up icon Tags: tv, screen, display, upload, connect, remote, screen share

func MonitorX

func MonitorX(opts ...Option) templ.Component

MonitorX creates a monitor-x icon Tags: tv, screen, display, desktop, virtual machine, vm, close, stop, suspend, remove, delete

func Moon

func Moon(opts ...Option) templ.Component

Moon creates a moon icon Tags: dark, night

func MoonStar

func MoonStar(opts ...Option) templ.Component

MoonStar creates a moon-star icon Tags: dark, night, star

func Motorbike

func Motorbike(opts ...Option) templ.Component

Motorbike creates a motorbike icon Tags: moto, motorcycle, transport, vehicle, drive, ride, trip, race, racing, journey, delivery

func Mountain

func Mountain(opts ...Option) templ.Component

Mountain creates a mountain icon Tags: climb, hike, rock

func MountainSnow

func MountainSnow(opts ...Option) templ.Component

MountainSnow creates a mountain-snow icon Tags: alpine, climb, snow

func Mouse

func Mouse(opts ...Option) templ.Component

Mouse creates a mouse icon Tags: device, scroll, click

func MouseOff

func MouseOff(opts ...Option) templ.Component

MouseOff creates a mouse-off icon Tags: device, scroll, click, disabled

func MousePointer

func MousePointer(opts ...Option) templ.Component

MousePointer creates a mouse-pointer icon Tags: click, select

func MousePointer2

func MousePointer2(opts ...Option) templ.Component

MousePointer2 creates a mouse-pointer-2 icon Tags: click, select

func MousePointer2Off

func MousePointer2Off(opts ...Option) templ.Component

MousePointer2Off creates a mouse-pointer-2-off icon Tags: pointer, mouse, cursor, off, disable, arrow, navigation, selection, select, click, no-click, interaction

func MousePointerBan

func MousePointerBan(opts ...Option) templ.Component

MousePointerBan creates a mouse-pointer-ban icon Tags: wait, busy, loading, blocked, frozen, freeze

func MousePointerClick

func MousePointerClick(opts ...Option) templ.Component

MousePointerClick creates a mouse-pointer-click icon Tags: click, select

func Move

func Move(opts ...Option) templ.Component

Move creates a move icon Tags: arrows

func Move3d

func Move3d(opts ...Option) templ.Component

Move3d creates a move-3d icon Tags: arrows, axis, gizmo, coordinates, transform, translate

func MoveDiagonal

func MoveDiagonal(opts ...Option) templ.Component

MoveDiagonal creates a move-diagonal icon Tags: double, arrow

func MoveDiagonal2

func MoveDiagonal2(opts ...Option) templ.Component

MoveDiagonal2 creates a move-diagonal-2 icon Tags: double, arrow

func MoveDown

func MoveDown(opts ...Option) templ.Component

MoveDown creates a move-down icon Tags: arrow, direction, downwards, south

func MoveDownLeft

func MoveDownLeft(opts ...Option) templ.Component

MoveDownLeft creates a move-down-left icon Tags: arrow, direction

func MoveDownRight

func MoveDownRight(opts ...Option) templ.Component

MoveDownRight creates a move-down-right icon Tags: arrow, direction

func MoveHorizontal

func MoveHorizontal(opts ...Option) templ.Component

MoveHorizontal creates a move-horizontal icon Tags: double, arrow

func MoveLeft

func MoveLeft(opts ...Option) templ.Component

MoveLeft creates a move-left icon Tags: arrow, direction, back, west

func MoveRight

func MoveRight(opts ...Option) templ.Component

MoveRight creates a move-right icon Tags: arrow, direction, trend flat, east

func MoveUp

func MoveUp(opts ...Option) templ.Component

MoveUp creates a move-up icon Tags: arrow, direction, upwards, north

func MoveUpLeft

func MoveUpLeft(opts ...Option) templ.Component

MoveUpLeft creates a move-up-left icon Tags: arrow, direction

func MoveUpRight

func MoveUpRight(opts ...Option) templ.Component

MoveUpRight creates a move-up-right icon Tags: arrow, direction

func MoveVertical

func MoveVertical(opts ...Option) templ.Component

MoveVertical creates a move-vertical icon Tags: double, arrow

func MultiPathIcon

func MultiPathIcon(paths []string, opts ...Option) templ.Component

MultiPathIcon creates an icon with multiple paths

func Music

func Music(opts ...Option) templ.Component

Music creates a music icon Tags: note, quaver, eighth note

func Music2

func Music2(opts ...Option) templ.Component

Music2 creates a music-2 icon Tags: quaver, eighth note, note

func Music3

func Music3(opts ...Option) templ.Component

Music3 creates a music-3 icon Tags: crotchet, minim, quarter note, half note, note

func Music4

func Music4(opts ...Option) templ.Component

Music4 creates a music-4 icon Tags: semiquaver, sixteenth note, note

func Navigation(opts ...Option) templ.Component

Navigation creates a navigation icon Tags: location, travel

func Navigation2(opts ...Option) templ.Component

Navigation2 creates a navigation-2 icon Tags: location, travel

func Navigation2Off(opts ...Option) templ.Component

Navigation2Off creates a navigation-2-off icon Tags: location, travel

func NavigationOff(opts ...Option) templ.Component

NavigationOff creates a navigation-off icon Tags: location, travel

func Network

func Network(opts ...Option) templ.Component

Network creates a network icon Tags: tree

func Newspaper

func Newspaper(opts ...Option) templ.Component

Newspaper creates a newspaper icon Tags: news, feed, home, magazine, article, headline

func Nfc

func Nfc(opts ...Option) templ.Component

Nfc creates a nfc icon Tags: contactless, payment, near-field communication

func NonBinary

func NonBinary(opts ...Option) templ.Component

NonBinary creates a non-binary icon Tags: gender, nonbinary, enby

func Notebook

func Notebook(opts ...Option) templ.Component

Notebook creates a notebook icon Tags: notepad, notes, stationery, sketchbook, moleskine, closure, strap, band, elastic, organizer, organiser, planner, diary, journal, writing, written, writer, reading, high school, university, college, academy, student, study, homework, research

func NotebookPen

func NotebookPen(opts ...Option) templ.Component

NotebookPen creates a notebook-pen icon Tags: pencil, notepad, notes, noted, stationery, sketchbook, organizer, organiser, planner, diary, journal, writing, write, written, reading, high school, university, college, academy, student, study, research, homework, eraser, rubber

func NotebookTabs

func NotebookTabs(opts ...Option) templ.Component

NotebookTabs creates a notebook-tabs icon Tags: notepad, notes, people, family, friends, acquaintances, contacts, details, addresses, phone numbers, directory, listing, networking, alphabetical, a-z, organizer, organiser, planner, diary, stationery

func NotebookText

func NotebookText(opts ...Option) templ.Component

NotebookText creates a notebook-text icon Tags: notepad, notes, pages, paper, stationery, sketchbook, organizer, organiser, planner, diary, journal, writing, write, written, reading, high school, university, college, academy, student, study, research, homework, lines, opened

func NotepadText

func NotepadText(opts ...Option) templ.Component

NotepadText creates a notepad-text icon Tags: notebook, notes, pages, paper, stationery, sketchbook, organizer, organiser, planner, diary, journal, writing, write, written, reading, high school, university, college, academy, student, study, homework, research, lines, opened

func NotepadTextDashed

func NotepadTextDashed(opts ...Option) templ.Component

NotepadTextDashed creates a notepad-text-dashed icon Tags: notebook, notes, pages, paper, stationery, diary, journal, writing, write, written, draft, template, lines

func Nut

func Nut(opts ...Option) templ.Component

Nut creates a nut icon Tags: hazelnut, acorn, food, diet

func NutOff

func NutOff(opts ...Option) templ.Component

NutOff creates a nut-off icon Tags: hazelnut, acorn, food, allergy, intolerance, diet

func Octagon

func Octagon(opts ...Option) templ.Component

Octagon creates a octagon icon Tags: stop, shape

func OctagonAlert

func OctagonAlert(opts ...Option) templ.Component

OctagonAlert creates a octagon-alert icon Tags: warning, alert, danger, exclamation mark

func OctagonMinus

func OctagonMinus(opts ...Option) templ.Component

OctagonMinus creates a octagon-minus icon Tags: stop, forbidden, subtract, remove, decrease, reduce, -, traffic, halt, restricted

func OctagonPause

func OctagonPause(opts ...Option) templ.Component

OctagonPause creates a octagon-pause icon Tags: music, audio, stop

func OctagonX

func OctagonX(opts ...Option) templ.Component

OctagonX creates a octagon-x icon Tags: delete, stop, alert, warning, times, clear, math

func Omega

func Omega(opts ...Option) templ.Component

Omega creates a omega icon Tags: greek, symbol, mathematics, education, physics, engineering, ohms, electrical resistance, angular frequency, dynamical systems, astronomy, constellations, philosophy

func OptionIcon

func OptionIcon(opts ...Option) templ.Component

OptionIcon creates a option icon Tags: keyboard, key, mac, alt, button

func Orbit

func Orbit(opts ...Option) templ.Component

Orbit creates a orbit icon Tags: planet, space, physics, satellites, moons

func Origami

func Origami(opts ...Option) templ.Component

Origami creates a origami icon Tags: paper, bird

func Package2

func Package2(opts ...Option) templ.Component

Package2 creates a package-2 icon Tags: box, container, storage, sealed, packed, unopened, undelivered, archive, zip

func PackageCheck

func PackageCheck(opts ...Option) templ.Component

PackageCheck creates a package-check icon Tags: confirm, verified, done, todo, tick, complete, task, delivered

func PackageIcon

func PackageIcon(opts ...Option) templ.Component

PackageIcon creates a package icon Tags: box, container, storage, sealed, delivery, undelivered, unopened, packed, archive, zip, module

func PackageMinus

func PackageMinus(opts ...Option) templ.Component

PackageMinus creates a package-minus icon Tags: delete, remove

func PackageOpen

func PackageOpen(opts ...Option) templ.Component

PackageOpen creates a package-open icon Tags: box, container, storage, unpack, unarchive, unzip, opened, delivered

func PackagePlus

func PackagePlus(opts ...Option) templ.Component

PackagePlus creates a package-plus icon Tags: new, add, create

func PackageSearch

func PackageSearch(opts ...Option) templ.Component

PackageSearch creates a package-search icon Tags: find, product process, lens

func PackageX

func PackageX(opts ...Option) templ.Component

PackageX creates a package-x icon Tags: delete, remove

func PaintBucket

func PaintBucket(opts ...Option) templ.Component

PaintBucket creates a paint-bucket icon Tags: fill, paint, bucket, color, colour

func PaintRoller

func PaintRoller(opts ...Option) templ.Component

PaintRoller creates a paint-roller icon Tags: brush, color, colour, decoration, diy

func Paintbrush

func Paintbrush(opts ...Option) templ.Component

Paintbrush creates a paintbrush icon Tags: brush, paintbrush, design, color, colour, decoration, diy

func PaintbrushVertical

func PaintbrushVertical(opts ...Option) templ.Component

PaintbrushVertical creates a paintbrush-vertical icon Tags: brush, paintbrush, design, color, colour, decoration, diy

func Palette

func Palette(opts ...Option) templ.Component

Palette creates a palette icon Tags: colors, colours, theme, scheme, paint, watercolor, watercolour, artist

func Panda

func Panda(opts ...Option) templ.Component

Panda creates a panda icon Tags: animal, wildlife, bear, zoo, bamboo

func PanelBottom

func PanelBottom(opts ...Option) templ.Component

PanelBottom creates a panel-bottom icon Tags: drawer, dock

func PanelBottomClose

func PanelBottomClose(opts ...Option) templ.Component

PanelBottomClose creates a panel-bottom-close icon Tags: drawer, dock, hide, chevron, down

func PanelBottomDashed

func PanelBottomDashed(opts ...Option) templ.Component

PanelBottomDashed creates a panel-bottom-dashed icon Tags: drawer, dock, show, reveal, padding, margin, guide, layout, bleed

func PanelBottomOpen

func PanelBottomOpen(opts ...Option) templ.Component

PanelBottomOpen creates a panel-bottom-open icon Tags: drawer, dock, show, reveal, chevron, up

func PanelLeft

func PanelLeft(opts ...Option) templ.Component

PanelLeft creates a panel-left icon Tags: primary, drawer

func PanelLeftClose

func PanelLeftClose(opts ...Option) templ.Component

PanelLeftClose creates a panel-left-close icon Tags: primary, drawer, hide, chevron, <

func PanelLeftDashed

func PanelLeftDashed(opts ...Option) templ.Component

PanelLeftDashed creates a panel-left-dashed icon Tags: sidebar, primary, drawer, show, reveal, padding, margin, guide, layout, bleed

func PanelLeftOpen

func PanelLeftOpen(opts ...Option) templ.Component

PanelLeftOpen creates a panel-left-open icon Tags: primary, drawer, show, reveal, chevron, right, >

func PanelLeftRightDashed

func PanelLeftRightDashed(opts ...Option) templ.Component

PanelLeftRightDashed creates a panel-left-right-dashed icon Tags: sidebar, primary, drawer, show, reveal, padding, margin, guide, layout, vertical, bleed

func PanelRight

func PanelRight(opts ...Option) templ.Component

PanelRight creates a panel-right icon Tags: sidebar, secondary, drawer

func PanelRightClose

func PanelRightClose(opts ...Option) templ.Component

PanelRightClose creates a panel-right-close icon Tags: sidebar, secondary, drawer, hide, chevron, >

func PanelRightDashed

func PanelRightDashed(opts ...Option) templ.Component

PanelRightDashed creates a panel-right-dashed icon Tags: sidebar, secondary, drawer, show, reveal, padding, margin, guide, layout, bleed

func PanelRightOpen

func PanelRightOpen(opts ...Option) templ.Component

PanelRightOpen creates a panel-right-open icon Tags: sidebar, secondary, drawer, show, reveal, chevron, left, <

func PanelTop

func PanelTop(opts ...Option) templ.Component

PanelTop creates a panel-top icon Tags: drawer, browser, webpage

func PanelTopBottomDashed

func PanelTopBottomDashed(opts ...Option) templ.Component

PanelTopBottomDashed creates a panel-top-bottom-dashed icon Tags: sidebar, primary, drawer, show, reveal, padding, margin, guide, layout, horizontal, bleed

func PanelTopClose

func PanelTopClose(opts ...Option) templ.Component

PanelTopClose creates a panel-top-close icon Tags: menu bar, drawer, hide, chevron, up

func PanelTopDashed

func PanelTopDashed(opts ...Option) templ.Component

PanelTopDashed creates a panel-top-dashed icon Tags: menu bar, drawer, show, reveal, padding, margin, guide, layout, bleed

func PanelTopOpen

func PanelTopOpen(opts ...Option) templ.Component

PanelTopOpen creates a panel-top-open icon Tags: menu bar, drawer, show, reveal, chevron, down

func PanelsLeftBottom

func PanelsLeftBottom(opts ...Option) templ.Component

PanelsLeftBottom creates a panels-left-bottom icon Tags: drawers, sidebar, primary

func PanelsRightBottom

func PanelsRightBottom(opts ...Option) templ.Component

PanelsRightBottom creates a panels-right-bottom icon Tags: drawers, sidebar, secondary

func PanelsTopLeft

func PanelsTopLeft(opts ...Option) templ.Component

PanelsTopLeft creates a panels-top-left icon Tags: menu bar, sidebar, primary, drawers, window, webpage, projects, overview

func Paperclip

func Paperclip(opts ...Option) templ.Component

Paperclip creates a paperclip icon Tags: attachment, file

func Parentheses

func Parentheses(opts ...Option) templ.Component

Parentheses creates a parentheses icon Tags: code, token, parenthesis, parens, brackets, parameters, arguments, args, input, call, math, formula, function, (, )

func ParkingMeter

func ParkingMeter(opts ...Option) templ.Component

ParkingMeter creates a parking-meter icon Tags: driving, car park, pay, sidewalk, pavement

func PartyPopper

func PartyPopper(opts ...Option) templ.Component

PartyPopper creates a party-popper icon Tags: emoji, congratulations, celebration, party, tada, 🎉, 🎊, excitement, exciting, excites, confetti

func Pause

func Pause(opts ...Option) templ.Component

Pause creates a pause icon Tags: music, stop

func PawPrint

func PawPrint(opts ...Option) templ.Component

PawPrint creates a paw-print icon Tags: pets, vets, veterinarian, domesticated, cat, dog, bear

func PcCase

func PcCase(opts ...Option) templ.Component

PcCase creates a pc-case icon Tags: computer, chassis

func Pen

func Pen(opts ...Option) templ.Component

Pen creates a pen icon Tags: pencil, change, create, draw, writer, writing, biro, ink, marker, felt tip, stationery, artist

func PenLine

func PenLine(opts ...Option) templ.Component

PenLine creates a pen-line icon Tags: pencil, change, create, draw, writer, writing, biro, ink, marker, felt tip, stationery, artist

func PenOff

func PenOff(opts ...Option) templ.Component

PenOff creates a pen-off icon Tags: disabled, inactive, non-editable, locked, read-only, unmodifiable, frozen, restricted, pencil, change, create, draw, writer, writing, biro, ink, marker, felt tip, stationery, artist

func PenTool

func PenTool(opts ...Option) templ.Component

PenTool creates a pen-tool icon Tags: vector, drawing, path

func Pencil

func Pencil(opts ...Option) templ.Component

Pencil creates a pencil icon Tags: rubber, edit, create, draw, sketch, draft, writer, writing, stationery, artist

func PencilLine

func PencilLine(opts ...Option) templ.Component

PencilLine creates a pencil-line icon Tags: pencil, change, create, draw, sketch, draft, writer, writing, biro, ink, marker, felt tip, stationery, artist

func PencilOff

func PencilOff(opts ...Option) templ.Component

PencilOff creates a pencil-off icon Tags: disabled, inactive, non-editable, locked, read-only, unmodifiable, frozen, restricted, rubber, edit, create, draw, sketch, draft, writer, writing, stationery, artist

func PencilRuler

func PencilRuler(opts ...Option) templ.Component

PencilRuler creates a pencil-ruler icon Tags: edit, create, draw, sketch, draft, writer, writing, stationery, artist, measurements, centimeters, cm, millimeters, mm, metre, foot, feet, inches, units, size, length, width, height, dimensions, depth, breadth, extent

func Pentagon

func Pentagon(opts ...Option) templ.Component

Pentagon creates a pentagon icon Tags: shape

func Percent

func Percent(opts ...Option) templ.Component

Percent creates a percent icon Tags: percentage, modulo, modulus, remainder, %, sale, discount, offer, marketing

func PersonStanding

func PersonStanding(opts ...Option) templ.Component

PersonStanding creates a person-standing icon Tags: people, human, accessibility, stick figure

func PhilippinePeso

func PhilippinePeso(opts ...Option) templ.Component

PhilippinePeso creates a philippine-peso icon Tags: currency, peso, money, php

func Phone

func Phone(opts ...Option) templ.Component

Phone creates a phone icon Tags: call

func PhoneCall

func PhoneCall(opts ...Option) templ.Component

PhoneCall creates a phone-call icon Tags: ring

func PhoneForwarded

func PhoneForwarded(opts ...Option) templ.Component

PhoneForwarded creates a phone-forwarded icon Tags: call

func PhoneIncoming

func PhoneIncoming(opts ...Option) templ.Component

PhoneIncoming creates a phone-incoming icon Tags: call

func PhoneMissed

func PhoneMissed(opts ...Option) templ.Component

PhoneMissed creates a phone-missed icon Tags: call

func PhoneOff

func PhoneOff(opts ...Option) templ.Component

PhoneOff creates a phone-off icon Tags: call, mute

func PhoneOutgoing

func PhoneOutgoing(opts ...Option) templ.Component

PhoneOutgoing creates a phone-outgoing icon Tags: call

func Pi

func Pi(opts ...Option) templ.Component

Pi creates a pi icon Tags: constant, code, coding, programming, symbol, trigonometry, geometry, formula

func Piano

func Piano(opts ...Option) templ.Component

Piano creates a piano icon Tags: music, audio, sound, noise, notes, chord, keys, octave, acoustic, instrument, play, pianist, performance, concert

func Pickaxe

func Pickaxe(opts ...Option) templ.Component

Pickaxe creates a pickaxe icon Tags: mining, mine, land worker, extraction, labor, construction, progress, advancement, crafting, building, creation

func PictureInPicture

func PictureInPicture(opts ...Option) templ.Component

PictureInPicture creates a picture-in-picture icon Tags: display, play, video, pop out, always on top, window, inset, multitask

func PictureInPicture2

func PictureInPicture2(opts ...Option) templ.Component

PictureInPicture2 creates a picture-in-picture-2 icon Tags: display, play, video, pop out, always on top, window, inset, multitask

func PiggyBank

func PiggyBank(opts ...Option) templ.Component

PiggyBank creates a piggy-bank icon Tags: money, savings

func Pilcrow

func Pilcrow(opts ...Option) templ.Component

Pilcrow creates a pilcrow icon Tags: paragraph, mark, paraph, blind, typography, type, text, prose, symbol

func PilcrowLeft

func PilcrowLeft(opts ...Option) templ.Component

PilcrowLeft creates a pilcrow-left icon Tags: direction, paragraph, mark, paraph, blind, typography, type, text, prose, symbol

func PilcrowRight

func PilcrowRight(opts ...Option) templ.Component

PilcrowRight creates a pilcrow-right icon Tags: direction, paragraph, mark, paraph, blind, typography, type, text, prose, symbol

func Pill

func Pill(opts ...Option) templ.Component

Pill creates a pill icon Tags: medicine, medication, drug, prescription, tablet, pharmacy

func PillBottle

func PillBottle(opts ...Option) templ.Component

PillBottle creates a pill-bottle icon Tags: medicine, medication, prescription, drug, supplement, vitamin, capsule, jar, container, healthcare, pharmaceutical, tablet

func Pin

func Pin(opts ...Option) templ.Component

Pin creates a pin icon Tags: save, map, lock, fix

func PinOff

func PinOff(opts ...Option) templ.Component

PinOff creates a pin-off icon Tags: unpin, map, unlock, unfix, unsave, remove

func Pipette

func Pipette(opts ...Option) templ.Component

Pipette creates a pipette icon Tags: eye dropper, color picker, lab, chemistry

func Pizza

func Pizza(opts ...Option) templ.Component

Pizza creates a pizza icon Tags: pie, quiche, food

func Plane

func Plane(opts ...Option) templ.Component

Plane creates a plane icon Tags: plane, trip, airplane

func PlaneLanding

func PlaneLanding(opts ...Option) templ.Component

PlaneLanding creates a plane-landing icon Tags: arrival, plane, trip, airplane, landing

func PlaneTakeoff

func PlaneTakeoff(opts ...Option) templ.Component

PlaneTakeoff creates a plane-takeoff icon Tags: departure, plane, trip, airplane, takeoff

func Play

func Play(opts ...Option) templ.Component

Play creates a play icon Tags: music, audio, video, start, run

func Plug

func Plug(opts ...Option) templ.Component

Plug creates a plug icon Tags: electricity, energy, electronics, socket, outlet, power, voltage, current, charger

func Plug2

func Plug2(opts ...Option) templ.Component

Plug2 creates a plug-2 icon Tags: electricity, energy, socket, outlet

func PlugZap

func PlugZap(opts ...Option) templ.Component

PlugZap creates a plug-zap icon Tags: electricity, energy, electronics, charge, charging, battery, connect

func Plus

func Plus(opts ...Option) templ.Component

Plus creates a plus icon Tags: add, new, increase, increment, positive, calculate, toolbar, crosshair, aim, target, scope, sight, reticule, maximum, upgrade, extra, +

func Pocket

func Pocket(opts ...Option) templ.Component

Pocket creates a pocket icon Tags: logo, save

func PocketKnife

func PocketKnife(opts ...Option) templ.Component

PocketKnife creates a pocket-knife icon Tags: swiss army knife, penknife, multi-tool, multitask, blade, cutter, gadget, corkscrew

func Podcast

func Podcast(opts ...Option) templ.Component

Podcast creates a podcast icon Tags: audio, music, mic, talk, voice, subscribe, subscription, stream

func Pointer

func Pointer(opts ...Option) templ.Component

Pointer creates a pointer icon Tags: mouse

func PointerOff

func PointerOff(opts ...Option) templ.Component

PointerOff creates a pointer-off icon Tags: mouse

func Popcorn

func Popcorn(opts ...Option) templ.Component

Popcorn creates a popcorn icon Tags: cinema, movies, films, salted, sweet, sugar, candy, snack

func Popsicle

func Popsicle(opts ...Option) templ.Component

Popsicle creates a popsicle icon Tags: ice lolly, ice cream, sweet, food

func PoundSterling

func PoundSterling(opts ...Option) templ.Component

PoundSterling creates a pound-sterling icon Tags: currency, money, payment

func Power

func Power(opts ...Option) templ.Component

Power creates a power icon Tags: on, off, device, switch, toggle, binary, boolean, reboot, restart, button, keyboard, troubleshoot

func PowerOff

func PowerOff(opts ...Option) templ.Component

PowerOff creates a power-off icon Tags: on, off, device, switch

func Presentation

func Presentation(opts ...Option) templ.Component

Presentation creates a presentation icon Tags: screen, whiteboard, marker pens, markers, blackboard, chalk, easel, school, learning, lesson, office, meeting, project, planning

func Printer

func Printer(opts ...Option) templ.Component

Printer creates a printer icon Tags: fax, office, device

func PrinterCheck

func PrinterCheck(opts ...Option) templ.Component

PrinterCheck creates a printer-check icon Tags: fax, office, device, success, printed

func Projector

func Projector(opts ...Option) templ.Component

Projector creates a projector icon Tags: cinema, film, movie, home video, presentation, slideshow, office, meeting, project, planning

func Proportions

func Proportions(opts ...Option) templ.Component

Proportions creates a proportions icon Tags: screens, sizes, rotate, rotation, adjust, aspect ratio, 16:9, widescreen, 4:3, resolution, responsive, mobile, desktop, dimensions, monitor, orientation, portrait, landscape

func Puzzle

func Puzzle(opts ...Option) templ.Component

Puzzle creates a puzzle icon Tags: component, module, part, piece

func Pyramid

func Pyramid(opts ...Option) templ.Component

Pyramid creates a pyramid icon Tags: prism, triangle, triangular, hierarchy, structure, geometry, ancient, egyptian, landmark, tourism

func QrCode

func QrCode(opts ...Option) templ.Component

QrCode creates a qr-code icon Tags: barcode, scan, link, url, information, digital

func Quote

func Quote(opts ...Option) templ.Component

Quote creates a quote icon Tags: quotation

func Rabbit

func Rabbit(opts ...Option) templ.Component

Rabbit creates a rabbit icon Tags: animal, rodent, pet, pest, bunny, hare, fast, speed, hop

func Radar

func Radar(opts ...Option) templ.Component

Radar creates a radar icon Tags: scan, sonar, detect, find, locate

func Radiation

func Radiation(opts ...Option) templ.Component

Radiation creates a radiation icon Tags: radioactive, nuclear, fallout, waste, atomic, physics, particle, element, molecule

func Radical

func Radical(opts ...Option) templ.Component

Radical creates a radical icon Tags: calculate, formula, math, operator, root, square, symbol

func Radio

func Radio(opts ...Option) templ.Component

Radio creates a radio icon Tags: signal, broadcast, connectivity, live, frequency

func RadioReceiver

func RadioReceiver(opts ...Option) templ.Component

RadioReceiver creates a radio-receiver icon Tags: device, music, connect

func RadioTower

func RadioTower(opts ...Option) templ.Component

RadioTower creates a radio-tower icon Tags: signal, broadcast, connectivity, live, frequency

func Radius

func Radius(opts ...Option) templ.Component

Radius creates a radius icon Tags: shape, circle, geometry, trigonometry, radii, calculate, measure, size

func RailSymbol

func RailSymbol(opts ...Option) templ.Component

RailSymbol creates a rail-symbol icon Tags: railway, train, track, line

func Rainbow

func Rainbow(opts ...Option) templ.Component

Rainbow creates a rainbow icon Tags: colors, colours, spectrum, light, prism, arc, clear, sunshine

func Rat

func Rat(opts ...Option) templ.Component

Rat creates a rat icon Tags: mouse, mice, gerbil, rodent, pet, pest, plague, disease

func Ratio

func Ratio(opts ...Option) templ.Component

Ratio creates a ratio icon Tags: screens, sizes, rotate, rotation, adjust, aspect ratio, proportions, 16:9, widescreen, 4:3, resolution, responsive, mobile, desktop, dimensions, monitor, orientation, portrait, landscape

func Receipt

func Receipt(opts ...Option) templ.Component

Receipt creates a receipt icon Tags: bill, voucher, slip, check, counterfoil, currency, dollar, usd, $

func ReceiptCent

func ReceiptCent(opts ...Option) templ.Component

ReceiptCent creates a receipt-cent icon Tags: bill, voucher, slip, check, counterfoil, currency, cents, dollar, usd, $, ¢

func ReceiptEuro

func ReceiptEuro(opts ...Option) templ.Component

ReceiptEuro creates a receipt-euro icon Tags: bill, voucher, slip, check, counterfoil, currency, €

func ReceiptIndianRupee

func ReceiptIndianRupee(opts ...Option) templ.Component

ReceiptIndianRupee creates a receipt-indian-rupee icon Tags: bill, voucher, slip, check, counterfoil, currency, inr, ₹

func ReceiptJapaneseYen

func ReceiptJapaneseYen(opts ...Option) templ.Component

ReceiptJapaneseYen creates a receipt-japanese-yen icon Tags: bill, voucher, slip, check, counterfoil, currency, jpy, ¥

func ReceiptPoundSterling

func ReceiptPoundSterling(opts ...Option) templ.Component

ReceiptPoundSterling creates a receipt-pound-sterling icon Tags: bill, voucher, slip, check, counterfoil, british, currency, gbp, £

func ReceiptRussianRuble

func ReceiptRussianRuble(opts ...Option) templ.Component

ReceiptRussianRuble creates a receipt-russian-ruble icon Tags: bill, voucher, slip, check, counterfoil, currency, rub, ₽

func ReceiptSwissFranc

func ReceiptSwissFranc(opts ...Option) templ.Component

ReceiptSwissFranc creates a receipt-swiss-franc icon Tags: bill, voucher, slip, check, counterfoil, currency, chf, ₣

func ReceiptText

func ReceiptText(opts ...Option) templ.Component

ReceiptText creates a receipt-text icon Tags: bill, voucher, slip, check, counterfoil, details, small print, terms, conditions, contract

func ReceiptTurkishLira

func ReceiptTurkishLira(opts ...Option) templ.Component

ReceiptTurkishLira creates a receipt-turkish-lira icon Tags: bill, voucher, slip, check, counterfoil, currency, try, ₺

func RectangleCircle

func RectangleCircle(opts ...Option) templ.Component

RectangleCircle creates a rectangle-circle icon Tags: compose, keyboard, key, button

func RectangleEllipsis

func RectangleEllipsis(opts ...Option) templ.Component

RectangleEllipsis creates a rectangle-ellipsis icon Tags: login, password, authenticate, 2fa, field, fill, ellipsis, et cetera, etc, loader, loading, progress, pending, throbber, menu, options, operator, code, spread, rest, more, further, extra, overflow, dots, …, ...

func RectangleGoggles

func RectangleGoggles(opts ...Option) templ.Component

RectangleGoggles creates a rectangle-goggles icon Tags: vr, virtual, augmented, reality, headset, goggles

func RectangleHorizontal

func RectangleHorizontal(opts ...Option) templ.Component

RectangleHorizontal creates a rectangle-horizontal icon Tags: rectangle, aspect ratio, 16:9, horizontal, shape

func RectangleVertical

func RectangleVertical(opts ...Option) templ.Component

RectangleVertical creates a rectangle-vertical icon Tags: rectangle, aspect ratio, 9:16, vertical, shape

func Recycle

func Recycle(opts ...Option) templ.Component

Recycle creates a recycle icon Tags: sustainability, salvage, arrows

func Redo

func Redo(opts ...Option) templ.Component

Redo creates a redo icon Tags: undo, rerun, history

func Redo2

func Redo2(opts ...Option) templ.Component

Redo2 creates a redo-2 icon Tags: undo, rerun, history

func RedoDot

func RedoDot(opts ...Option) templ.Component

RedoDot creates a redo-dot icon Tags: redo, history, step, over, forward

func RefreshCcw

func RefreshCcw(opts ...Option) templ.Component

RefreshCcw creates a refresh-ccw icon Tags: arrows, rotate, reload, rerun, synchronise, synchronize, circular, cycle

func RefreshCcwDot

func RefreshCcwDot(opts ...Option) templ.Component

RefreshCcwDot creates a refresh-ccw-dot icon Tags: arrows, rotate, reload, synchronise, synchronize, circular, cycle, issue, code, coding, version control

func RefreshCw

func RefreshCw(opts ...Option) templ.Component

RefreshCw creates a refresh-cw icon Tags: rotate, reload, rerun, synchronise, synchronize, arrows, circular, cycle

func RefreshCwOff

func RefreshCwOff(opts ...Option) templ.Component

RefreshCwOff creates a refresh-cw-off icon Tags: rotate, reload, rerun, synchronise, synchronize, arrows, circular, cycle, cancel, no, stop, error, disconnect, ignore

func Refrigerator

func Refrigerator(opts ...Option) templ.Component

Refrigerator creates a refrigerator icon Tags: frigerator, fridge, freezer, cooler, icebox, chiller, cold storage

func Regex

func Regex(opts ...Option) templ.Component

Regex creates a regex icon Tags: search, text, code

func RemoveFormatting

func RemoveFormatting(opts ...Option) templ.Component

RemoveFormatting creates a remove-formatting icon Tags: text, font, typography, format, x, remove, delete, times, clear

func Repeat

func Repeat(opts ...Option) templ.Component

Repeat creates a repeat icon Tags: loop, arrows

func Repeat1

func Repeat1(opts ...Option) templ.Component

Repeat1 creates a repeat-1 icon Tags: replay

func Repeat2

func Repeat2(opts ...Option) templ.Component

Repeat2 creates a repeat-2 icon Tags: arrows, retweet, repost, share, repeat, loop

func Replace

func Replace(opts ...Option) templ.Component

Replace creates a replace icon Tags: search, substitute, swap, change

func ReplaceAll

func ReplaceAll(opts ...Option) templ.Component

ReplaceAll creates a replace-all icon Tags: search, substitute, swap, change

func Reply

func Reply(opts ...Option) templ.Component

Reply creates a reply icon Tags: email

func ReplyAll

func ReplyAll(opts ...Option) templ.Component

ReplyAll creates a reply-all icon Tags: email

func Rewind

func Rewind(opts ...Option) templ.Component

Rewind creates a rewind icon Tags: music

func Ribbon

func Ribbon(opts ...Option) templ.Component

Ribbon creates a ribbon icon Tags: awareness, strip, band, tape, strap, cordon

func Rocket

func Rocket(opts ...Option) templ.Component

Rocket creates a rocket icon Tags: release, boost, launch, space, version

func RockingChair

func RockingChair(opts ...Option) templ.Component

RockingChair creates a rocking-chair icon Tags: chair, furniture, seat

func RollerCoaster

func RollerCoaster(opts ...Option) templ.Component

RollerCoaster creates a roller-coaster icon Tags: attraction, entertainment, amusement park, theme park, funfair

func Rose

func Rose(opts ...Option) templ.Component

Rose creates a rose icon Tags: roses, thorns, petals, plant, stem, leaves, spring, bloom, blossom, gardening, botanical, flora, florist, bouquet, bunch, gift, date, romance, romantic, valentines day, special occasion

func Rotate3d

func Rotate3d(opts ...Option) templ.Component

Rotate3d creates a rotate-3d icon Tags: gizmo, transform, orientation, orbit, axis

func RotateCcw

func RotateCcw(opts ...Option) templ.Component

RotateCcw creates a rotate-ccw icon Tags: arrow, left, counter-clockwise, restart, reload, rerun, refresh, backup, undo, replay, redo, retry, rewind, reverse

func RotateCcwKey

func RotateCcwKey(opts ...Option) templ.Component

RotateCcwKey creates a rotate-ccw-key icon Tags: password, key, refresh, change

func RotateCcwSquare

func RotateCcwSquare(opts ...Option) templ.Component

RotateCcwSquare creates a rotate-ccw-square icon Tags: left, counter-clockwise, rotate, image, 90, 45, degrees, °

func RotateCw

func RotateCw(opts ...Option) templ.Component

RotateCw creates a rotate-cw icon Tags: arrow, right, clockwise, refresh, reload, rerun, redo

func RotateCwSquare

func RotateCwSquare(opts ...Option) templ.Component

RotateCwSquare creates a rotate-cw-square icon Tags: right, clockwise, rotate, image, 90, 45, degrees, °

func Route

func Route(opts ...Option) templ.Component

Route creates a route icon Tags: path, journey, planner, points, stops, stations

func RouteOff

func RouteOff(opts ...Option) templ.Component

RouteOff creates a route-off icon Tags: path, journey, planner, points, stops, stations, reset, clear, cancelled, closed, blocked

func Router

func Router(opts ...Option) templ.Component

Router creates a router icon Tags: computer, server, cloud

func Rows2

func Rows2(opts ...Option) templ.Component

Rows2 creates a rows-2 icon Tags: lines, list, queue, preview, panel, paragraphs, parallel, series, split, vertical, horizontal, half, center, middle, even, drawer

func Rows3

func Rows3(opts ...Option) templ.Component

Rows3 creates a rows-3 icon Tags: lines, list, queue, preview, paragraphs, parallel, series, split, vertical, horizontal, half, center, middle, even, drawers

func Rows4

func Rows4(opts ...Option) templ.Component

Rows4 creates a rows-4 icon Tags: lines, list, queue, preview, paragraphs, parallel, series, split, vertical, horizontal, half, center, middle, even, drawers, grill

func Rss

func Rss(opts ...Option) templ.Component

Rss creates a rss icon Tags: feed, subscribe, news, updates, notifications, content, blog, articles, broadcast, syndication, reader, channels, posts, publishing, digest, alert, following, inbox, newsletter, weblog, podcast

func Ruler

func Ruler(opts ...Option) templ.Component

Ruler creates a ruler icon Tags: measurements, centimeters, cm, millimeters, mm, metre, foot, feet, inches, units, size, length, width, height, dimensions, depth, breadth, extent, stationery

func RulerDimensionLine

func RulerDimensionLine(opts ...Option) templ.Component

RulerDimensionLine creates a ruler-dimension-line icon Tags: measurements, centimeters, cm, millimeters, mm, metre, foot, feet, inches, units, size, length, width, height, dimensions, depth, breadth, extent, stationery

func RussianRuble

func RussianRuble(opts ...Option) templ.Component

RussianRuble creates a russian-ruble icon Tags: currency, money, payment

func Sailboat

func Sailboat(opts ...Option) templ.Component

Sailboat creates a sailboat icon Tags: ship, boat, harbor, harbour, dock

func Salad

func Salad(opts ...Option) templ.Component

Salad creates a salad icon Tags: food, vegetarian, dish, restaurant, course, meal, side, vegetables, health

func Sandwich

func Sandwich(opts ...Option) templ.Component

Sandwich creates a sandwich icon Tags: food, snack, dish, restaurant, lunch, meal

func Satellite

func Satellite(opts ...Option) templ.Component

Satellite creates a satellite icon Tags: space station, orbit, transmitter

func SatelliteDish

func SatelliteDish(opts ...Option) templ.Component

SatelliteDish creates a satellite-dish icon Tags: antenna, receiver, dish aerial, saucer

func SaudiRiyal

func SaudiRiyal(opts ...Option) templ.Component

SaudiRiyal creates a saudi-riyal icon Tags: currency, money, payment

func Save

func Save(opts ...Option) templ.Component

Save creates a save icon Tags: floppy disk

func SaveAll

func SaveAll(opts ...Option) templ.Component

SaveAll creates a save-all icon Tags: floppy disks, copy

func SaveOff

func SaveOff(opts ...Option) templ.Component

SaveOff creates a save-off icon Tags: floppy disk, unsalvageable

func Scale

func Scale(opts ...Option) templ.Component

Scale creates a scale icon Tags: balance, legal, license, right, rule, law, justice, weight, measure, compare, judge, fair, ethics, decision

func Scale3d

func Scale3d(opts ...Option) templ.Component

Scale3d creates a scale-3d icon Tags: gizmo, transform, size, axis

func Scaling

func Scaling(opts ...Option) templ.Component

Scaling creates a scaling icon Tags: scale, resize, design

func Scan

func Scan(opts ...Option) templ.Component

Scan creates a scan icon Tags: qr-code, barcode, checkout, augmented reality, ar, target, surveillance, camera, lens, focus, frame, select, box, boundary, bounds, area, square, dashed

func ScanBarcode

func ScanBarcode(opts ...Option) templ.Component

ScanBarcode creates a scan-barcode icon Tags: checkout, till, cart, transaction, purchase, buy, product, packaging, retail, consumer

func ScanEye

func ScanEye(opts ...Option) templ.Component

ScanEye creates a scan-eye icon Tags: preview, zoom, expand, fullscreen, gallery, image, camera, watch, surveillance, retina, focus, lens, biometric, identification, authentication, access, login

func ScanFace

func ScanFace(opts ...Option) templ.Component

ScanFace creates a scan-face icon Tags: face, biometric, identification, authentication, 2fa, access, login, dashed

func ScanHeart

func ScanHeart(opts ...Option) templ.Component

ScanHeart creates a scan-heart icon Tags: health, heart rate, pulse, monitoring, healthiness, screening, dashed

func ScanLine

func ScanLine(opts ...Option) templ.Component

ScanLine creates a scan-line icon Tags: checkout, till, cart, transaction, purchase, buy, product, packaging, retail, consumer, qr-code, dashed

func ScanQrCode

func ScanQrCode(opts ...Option) templ.Component

ScanQrCode creates a scan-qr-code icon Tags: barcode, scan, qrcode, url, information, digital, scanner

func ScanSearch

func ScanSearch(opts ...Option) templ.Component

ScanSearch creates a scan-search icon Tags: preview, zoom, expand, fullscreen, gallery, image, focus, lens

func ScanText

func ScanText(opts ...Option) templ.Component

ScanText creates a scan-text icon Tags: recognition, read, translate, copy, lines

func School

func School(opts ...Option) templ.Component

School creates a school icon Tags: building, education, childhood, university, learning, campus, scholar, student, lecture, degree, course, academia, study, knowledge, classroom, research, diploma, graduation, professor, tutorial, homework, assignment, exam

func Scissors

func Scissors(opts ...Option) templ.Component

Scissors creates a scissors icon Tags: cut, snip, chop, stationery, crafts

func ScissorsLineDashed

func ScissorsLineDashed(opts ...Option) templ.Component

ScissorsLineDashed creates a scissors-line-dashed icon Tags: cut here, along, snip, chop, stationery, crafts, instructions, diagram

func Scooter

func Scooter(opts ...Option) templ.Component

Scooter creates a scooter icon Tags: vehicle, drive, trip, journey, transport, electric, ride, urban, commute, speed

func ScreenShare

func ScreenShare(opts ...Option) templ.Component

ScreenShare creates a screen-share icon Tags: host, desktop, monitor

func ScreenShareOff

func ScreenShareOff(opts ...Option) templ.Component

ScreenShareOff creates a screen-share-off icon Tags: desktop, disconnect, monitor

func Scroll

func Scroll(opts ...Option) templ.Component

Scroll creates a scroll icon Tags: paper, log, scripture, document, notes, parchment, list, long, script, story, code, coding

func ScrollText

func ScrollText(opts ...Option) templ.Component

ScrollText creates a scroll-text icon Tags: paper, log, scripture, document, notes, parchment, list, long, script, story, code, coding

func Search(opts ...Option) templ.Component

Search creates a search icon Tags: find, scan, magnifier, magnifying glass, lens

func SearchAlert

func SearchAlert(opts ...Option) templ.Component

SearchAlert creates a search-alert icon Tags: find, scan, magnifier, magnifying glass, stop, warning, alert, error, anomaly, lens

func SearchCheck

func SearchCheck(opts ...Option) templ.Component

SearchCheck creates a search-check icon Tags: find, scan, magnifier, magnifying glass, found, correct, complete, tick, lens

func SearchCode

func SearchCode(opts ...Option) templ.Component

SearchCode creates a search-code icon Tags: find, scan, magnifier, magnifying glass, grep, chevrons, <>, lens

func SearchSlash

func SearchSlash(opts ...Option) templ.Component

SearchSlash creates a search-slash icon Tags: find, scan, magnifier, magnifying glass, stop, clear, cancel, abort, /, lens

func SearchX

func SearchX(opts ...Option) templ.Component

SearchX creates a search-x icon Tags: find, scan, magnifier, magnifying glass, stop, clear, cancel, abort, lens

func Section

func Section(opts ...Option) templ.Component

Section creates a section icon Tags: mark, typography, punctuation, legal, type, text, prose, symbol

func Send

func Send(opts ...Option) templ.Component

Send creates a send icon Tags: email, message, mail, paper airplane, paper aeroplane, submit

func SendHorizontal

func SendHorizontal(opts ...Option) templ.Component

SendHorizontal creates a send-horizontal icon Tags: email, message, mail, paper airplane, paper aeroplane, submit

func SendToBack

func SendToBack(opts ...Option) templ.Component

SendToBack creates a send-to-back icon Tags: bring, send, move, under, back, backwards, overlap, layer, order

func SeparatorHorizontal

func SeparatorHorizontal(opts ...Option) templ.Component

SeparatorHorizontal creates a separator-horizontal icon Tags: move, split

func SeparatorVertical

func SeparatorVertical(opts ...Option) templ.Component

SeparatorVertical creates a separator-vertical icon Tags: move, split

func Server

func Server(opts ...Option) templ.Component

Server creates a server icon Tags: cloud, storage

func ServerCog

func ServerCog(opts ...Option) templ.Component

ServerCog creates a server-cog icon Tags: cloud, storage, computing, cog, gear

func ServerCrash

func ServerCrash(opts ...Option) templ.Component

ServerCrash creates a server-crash icon Tags: cloud, storage, problem, error

func ServerOff

func ServerOff(opts ...Option) templ.Component

ServerOff creates a server-off icon Tags: cloud, storage

func Settings

func Settings(opts ...Option) templ.Component

Settings creates a settings icon Tags: cog, edit, gear, preferences

func Settings2

func Settings2(opts ...Option) templ.Component

Settings2 creates a settings-2 icon Tags: cog, edit, gear, preferences, slider

func Shapes

func Shapes(opts ...Option) templ.Component

Shapes creates a shapes icon Tags: triangle, equilateral, square, circle, classification, different, collection, toy, blocks, learning

func Share

func Share(opts ...Option) templ.Component

Share creates a share icon Tags: network, connections

func Share2

func Share2(opts ...Option) templ.Component

Share2 creates a share-2 icon Tags: network, connections

func Sheet

func Sheet(opts ...Option) templ.Component

Sheet creates a sheet icon Tags: spreadsheets, table, excel

func Shell

func Shell(opts ...Option) templ.Component

Shell creates a shell icon Tags: beach, sand, holiday, sealife, fossil, ammonite, biology, ocean, terminal, command line, session, bash, zsh, roll, wrap, chewing gum, bubble gum, sweet, sugar, hosepipe, carpet, string, spiral, spinner, hypnotise, hypnosis

func Shield

func Shield(opts ...Option) templ.Component

Shield creates a shield icon Tags: cybersecurity, secure, safety, protection, guardian, armored, armoured, defense, defence, defender, block, threat, prevention, antivirus, vigilance, vigilant, detection, scan, find, strength, strong, tough, invincible, invincibility, invulnerable, undamaged, audit, admin, verification, crest, bravery, knight, foot soldier, infantry, trooper, pawn, battle, war, military, army, cadet, scout

func ShieldAlert

func ShieldAlert(opts ...Option) templ.Component

ShieldAlert creates a shield-alert icon Tags: unshielded, cybersecurity, insecure, unsecured, safety, unsafe, protection, unprotected, guardian, unguarded, unarmored, unarmoured, defenseless, defenceless, undefended, defender, blocked, stopped, intercepted, interception, saved, thwarted, threat, prevention, unprevented, antivirus, vigilance, vigilant, detection, detected, scanned, found, exploit, vulnerability, vulnerable, weakness, infection, infected, comprimised, data leak, audited, admin, verification, unverified, uncertified, warning, emergency, attention, urgent, alarm, crest, bravery, strength, tough, attacked, damaged, injured, hit, expired, disabled, inactive, error, exclamation mark, !

func ShieldBan

func ShieldBan(opts ...Option) templ.Component

ShieldBan creates a shield-ban icon Tags: unshielded, cybersecurity, insecure, unsecured, safety, unsafe, protection, unprotected, guardian, unguarded, unarmored, unarmoured, defenseless, defenceless, undefended, defender, blocked, stopped, intercepted, interception, saved, thwarted, threat, prevention, unprevented, antivirus, vigilance, vigilant, detection, detected, scanned, found, exploit, vulnerability, vulnerable, weakness, infection, infected, comprimised, data leak, audited, admin, verification, unverified, uncertified, cancel, error, crest, bravery, attacked, damaged, injured, hit, expired, eliminated, disabled, inactive, /

func ShieldCheck

func ShieldCheck(opts ...Option) templ.Component

ShieldCheck creates a shield-check icon Tags: cybersecurity, secured, safety, protection, protected, guardian, guarded, armored, armoured, defense, defence, defended, blocked, threat, prevention, prevented, antivirus, vigilance, vigilant, active, activated, enabled, detection, scanned, found, strength, strong, tough, invincible, invincibility, invulnerable, undamaged, audited, admin, verification, verified, certification, certified, tested, passed, qualified, cleared, cleaned, disinfected, uninfected, task, completed, todo, done, ticked, checked, crest, bravery

func ShieldEllipsis

func ShieldEllipsis(opts ...Option) templ.Component

ShieldEllipsis creates a shield-ellipsis icon Tags: cybersecurity, securing, protecting, guarding, armoring, armouring, defending, blocking, preventing, antivirus, detecting, scanning, finding, auditing, admin, verifying, crest, upgrading, loader, loading, throbber, progress, dots, more, etc, ..., …

func ShieldHalf

func ShieldHalf(opts ...Option) templ.Component

ShieldHalf creates a shield-half icon Tags: cybersecurity, secure, safety, protection, guardian, armored, armoured, defense, defence, defender, block, threat, prevention, antivirus, vigilance, vigilant, detection, scan, strength, strong, tough, invincible, invincibility, invulnerable, undamaged, audit, admin, verification, crest, logo, sigil, flag, team, faction, fraternity, university, college, academy, school, education, uniform, bravery, knight, foot soldier, infantry, trooper, pawn, battle, war, military, ranking, army, cadet, scout

func ShieldMinus

func ShieldMinus(opts ...Option) templ.Component

ShieldMinus creates a shield-minus icon Tags: unshield, cybersecurity, unsecure, unguard, unblock, antivirus, clean, clear, disinfect, patch, fix, stop, cancel, remove, relax, admin, crest, bravery, weakened, damaged, hit, unarm, disable, deactivate, decommission, downgraded, minimum, -

func ShieldOff

func ShieldOff(opts ...Option) templ.Component

ShieldOff creates a shield-off icon Tags: unshielded, cybersecurity, insecure, unsecured, safety, unsafe, protection, unprotected, guardian, unguarded, unarmored, unarmoured, defenseless, defenceless, undefended, defender, interception, threat, prevention, unprevented, antivirus, detection, undetected, exploit, vulnerability, vulnerable, weakness, infected, infection, comprimised, data leak, unaudited, admin, verification, unverified, inactive, cancelled, error, crest, bravery, damaged, injured, hit, expired, eliminated

func ShieldPlus

func ShieldPlus(opts ...Option) templ.Component

ShieldPlus creates a shield-plus icon Tags: cybersecurity, secure, safety, protection, guardian, armored, armoured, defense, defence, defender, block, threat, prevention, antivirus, vigilance, vigilant, detection, scan, strength, strong, tough, invincible, invincibility, invulnerable, undamaged, extra, added, professional, enterprise, full, maximum, upgraded, ultra, activate, enable, audit, admin, verification, crest, medic, +

func ShieldQuestionMark

func ShieldQuestionMark(opts ...Option) templ.Component

ShieldQuestionMark creates a shield-question-mark icon Tags: unshielded, cybersecurity, insecure, unsecured, safety, unsafe, protection, unprotected, guardian, unguarded, unarmored, unarmoured, defenseless, defenceless, undefended, defender, threat, prevention, unprevented, antivirus, vigilance, vigilant, detection, undetected, scan, find, exploit, vulnerability, vulnerable, weakness, infection, comprimised, data leak, audit, admin, verification, unverified, uncertified, uncertain, unknown, inactive, crest, question mark, ?

func ShieldUser

func ShieldUser(opts ...Option) templ.Component

ShieldUser creates a shield-user icon Tags: shield, user, admin, protection, protected, safety, guard

func ShieldX

func ShieldX(opts ...Option) templ.Component

ShieldX creates a shield-x icon Tags: unshielded, cybersecurity, insecure, unsecured, safety, unsafe, protection, unprotected, guardian, unguarded, unarmored, unarmoured, defenseless, defenceless, undefended, defender, blocked, stopped, intercepted, interception, saved, thwarted, threat, prevention, prevented, antivirus, vigilance, vigilant, detection, detected, scanned, found, exploit, vulnerability, vulnerable, weakness, infection, infected, comprimised, data leak, audited, admin, verification, unverified, inactive, cancel, error, wrong, false, crest, bravery, attacked, damaged, injured, hit, dead, deceased, expired, eliminated, exterminated

func Ship

func Ship(opts ...Option) templ.Component

Ship creates a ship icon Tags: boat, knots, nautical mile, maritime, sailing, yacht, cruise, ocean liner, tanker, vessel, navy, trip, releases

func ShipWheel

func ShipWheel(opts ...Option) templ.Component

ShipWheel creates a ship-wheel icon Tags: steering, rudder, boat, knots, nautical mile, maritime, sailing, yacht, cruise, ocean liner, tanker, vessel, navy, trip

func Shirt

func Shirt(opts ...Option) templ.Component

Shirt creates a shirt icon Tags: t-shirt, shopping, store, clothing, clothes

func ShoppingBag

func ShoppingBag(opts ...Option) templ.Component

ShoppingBag creates a shopping-bag icon Tags: ecommerce, cart, purchase, store

func ShoppingBasket

func ShoppingBasket(opts ...Option) templ.Component

ShoppingBasket creates a shopping-basket icon Tags: cart, e-commerce, store, purchase, products, items, ingredients

func ShoppingCart

func ShoppingCart(opts ...Option) templ.Component

ShoppingCart creates a shopping-cart icon Tags: trolley, cart, basket, e-commerce, store, purchase, products, items, ingredients

func Shovel

func Shovel(opts ...Option) templ.Component

Shovel creates a shovel icon Tags: dig, spade, treasure

func ShowerHead

func ShowerHead(opts ...Option) templ.Component

ShowerHead creates a shower-head icon Tags: shower, bath, bathroom, amenities, services

func Shredder

func Shredder(opts ...Option) templ.Component

Shredder creates a shredder icon Tags: file, paper, tear, cut, delete, destroy, remove, erase, document, destruction, secure, security, confidential, data, trash, dispose, disposal, information, waste, permanent

func Shrimp

func Shrimp(opts ...Option) templ.Component

Shrimp creates a shrimp icon Tags: seafood, shellfish, crustacean, prawn, scallop, whelk, arthropod, littleneck, quahog, cherrystone

func Shrink

func Shrink(opts ...Option) templ.Component

Shrink creates a shrink icon Tags: scale, fullscreen

func Shrub

func Shrub(opts ...Option) templ.Component

Shrub creates a shrub icon Tags: forest, undergrowth, park, nature

func Shuffle

func Shuffle(opts ...Option) templ.Component

Shuffle creates a shuffle icon Tags: music, random, reorder

func Sigma

func Sigma(opts ...Option) templ.Component

Sigma creates a sigma icon Tags: sum, calculate, formula, math, enumeration, enumerate

func Signal

func Signal(opts ...Option) templ.Component

Signal creates a signal icon Tags: connection, wireless, gsm, phone, 2g, 3g, 4g, 5g

func SignalHigh

func SignalHigh(opts ...Option) templ.Component

SignalHigh creates a signal-high icon Tags: connection, wireless, gsm, phone, 2g, 3g, 4g, 5g

func SignalLow

func SignalLow(opts ...Option) templ.Component

SignalLow creates a signal-low icon Tags: connection, wireless, gsm, phone, 2g, 3g, 4g, 5g

func SignalMedium

func SignalMedium(opts ...Option) templ.Component

SignalMedium creates a signal-medium icon Tags: connection, wireless, gsm, phone, 2g, 3g, 4g, 5g

func SignalZero

func SignalZero(opts ...Option) templ.Component

SignalZero creates a signal-zero icon Tags: connection, wireless, gsm, phone, 2g, 3g, 4g, 5g, lost

func Signature

func Signature(opts ...Option) templ.Component

Signature creates a signature icon Tags: text, format, input, contract, autograph, handwriting, sign, cursive, ink, scribble, authorize, personal, agreement, legal, document, identity, authentic, approval, verification, unique

func Signpost

func Signpost(opts ...Option) templ.Component

Signpost creates a signpost icon Tags: bidirectional, left, right, east, west

func SignpostBig

func SignpostBig(opts ...Option) templ.Component

SignpostBig creates a signpost-big icon Tags: bidirectional, left, right, east, west

func Siren

func Siren(opts ...Option) templ.Component

Siren creates a siren icon Tags: police, ambulance, emergency, security, alert, alarm, light

func SkipBack

func SkipBack(opts ...Option) templ.Component

SkipBack creates a skip-back icon Tags: arrow, previous, music

func SkipForward

func SkipForward(opts ...Option) templ.Component

SkipForward creates a skip-forward icon Tags: arrow, skip, next, music

func Skull

func Skull(opts ...Option) templ.Component

Skull creates a skull icon Tags: death, danger, bone

func Slack

func Slack(opts ...Option) templ.Component

Slack creates a slack icon Tags: logo

func Slash

func Slash(opts ...Option) templ.Component

Slash creates a slash icon Tags: divide, division, or, /

func Slice

func Slice(opts ...Option) templ.Component

Slice creates a slice icon Tags: cutter, scalpel, knife

func SlidersHorizontal

func SlidersHorizontal(opts ...Option) templ.Component

SlidersHorizontal creates a sliders-horizontal icon Tags: settings, filters, controls

func SlidersVertical

func SlidersVertical(opts ...Option) templ.Component

SlidersVertical creates a sliders-vertical icon Tags: settings, controls

func Smartphone

func Smartphone(opts ...Option) templ.Component

Smartphone creates a smartphone icon Tags: phone, cellphone, device, screen

func SmartphoneCharging

func SmartphoneCharging(opts ...Option) templ.Component

SmartphoneCharging creates a smartphone-charging icon Tags: phone, cellphone, device, power, screen

func SmartphoneNfc

func SmartphoneNfc(opts ...Option) templ.Component

SmartphoneNfc creates a smartphone-nfc icon Tags: contactless, payment, near-field communication, screen

func Smile

func Smile(opts ...Option) templ.Component

Smile creates a smile icon Tags: emoji, face, happy, good, emotion

func SmilePlus

func SmilePlus(opts ...Option) templ.Component

SmilePlus creates a smile-plus icon Tags: emoji, face, happy, good, emotion, react, reaction, add

func Snail

func Snail(opts ...Option) templ.Component

Snail creates a snail icon Tags: animal, insect, slow, speed, delicacy, spiral

func Snowflake

func Snowflake(opts ...Option) templ.Component

Snowflake creates a snowflake icon Tags: cold, weather, freeze, snow, winter

func SoapDispenserDroplet

func SoapDispenserDroplet(opts ...Option) templ.Component

SoapDispenserDroplet creates a soap-dispenser-droplet icon Tags: wash, bath, water, liquid, fluid, wet, moisture, damp, bead, globule

func Sofa

func Sofa(opts ...Option) templ.Component

Sofa creates a sofa icon Tags: armchair, furniture, leisure, lounge, loveseat, couch

func SolarPanel

func SolarPanel(opts ...Option) templ.Component

SolarPanel creates a solar-panel icon Tags: solar panel, solar, panel, sun, energy, electricity, light

func Soup

func Soup(opts ...Option) templ.Component

Soup creates a soup icon Tags: food, dish, restaurant, course, meal, bowl, starter

func Space

func Space(opts ...Option) templ.Component

Space creates a space icon Tags: text, selection, letters, characters, font, typography

func Spade

func Spade(opts ...Option) templ.Component

Spade creates a spade icon Tags: shape, suit, playing, cards

func Sparkle

func Sparkle(opts ...Option) templ.Component

Sparkle creates a sparkle icon Tags: star, effect, filter, night, magic, shiny, glitter, twinkle, celebration

func Sparkles

func Sparkles(opts ...Option) templ.Component

Sparkles creates a sparkles icon Tags: stars, effect, filter, night, magic

func Speaker

func Speaker(opts ...Option) templ.Component

Speaker creates a speaker icon Tags: sound, audio, music, tweeter, subwoofer, bass, production, producer, dj

func Speech

func Speech(opts ...Option) templ.Component

Speech creates a speech icon Tags: disability, disabled, dda, human, accessibility, people, sound

func SpellCheck

func SpellCheck(opts ...Option) templ.Component

SpellCheck creates a spell-check icon Tags: spelling, error, mistake, oversight, typo, correction, code, linter, a

func SpellCheck2

func SpellCheck2(opts ...Option) templ.Component

SpellCheck2 creates a spell-check-2 icon Tags: spelling, error, mistake, oversight, typo, correction, code, linter, a

func Spline

func Spline(opts ...Option) templ.Component

Spline creates a spline icon Tags: path, pen, tool, shape, curve, draw

func SplinePointer

func SplinePointer(opts ...Option) templ.Component

SplinePointer creates a spline-pointer icon Tags: path, tool, curve, node, click, pointer, target, vector

func Split

func Split(opts ...Option) templ.Component

Split creates a split icon Tags: break, disband, divide, separate, branch, disunite

func Spool

func Spool(opts ...Option) templ.Component

Spool creates a spool icon Tags: bobbin, spindle, yarn, thread, string, sewing, needlework

func Spotlight

func Spotlight(opts ...Option) templ.Component

Spotlight creates a spotlight icon Tags: winner, soapbox, stage, entertainment, drama, podium, actor, actress, singer, light, beam, play, theatre, show, focus, concert, performance, lens, leaderboard, followspot, best, highlight

func SprayCan

func SprayCan(opts ...Option) templ.Component

SprayCan creates a spray-can icon Tags: paint, color, graffiti, decoration, aerosol, deodorant, shaving foam, air freshener

func Sprout

func Sprout(opts ...Option) templ.Component

Sprout creates a sprout icon Tags: eco, green, growth, leaf, nature, plant, seed, spring, sustainability

func Square

func Square(opts ...Option) templ.Component

Square creates a square icon Tags: stop, playback, music, audio, video, rectangle, aspect ratio, 1:1, shape

func SquareActivity

func SquareActivity(opts ...Option) templ.Component

SquareActivity creates a square-activity icon Tags: pulse, action, motion, movement, exercise, fitness, healthcare, heart rate monitor, vital signs, vitals, emergency room, er, intensive care, hospital, defibrillator, earthquake, siesmic, magnitude, richter scale, aftershock, tremor, shockwave, audio, waveform, synthesizer, synthesiser, music

func SquareArrowDown

func SquareArrowDown(opts ...Option) templ.Component

SquareArrowDown creates a square-arrow-down icon Tags: backwards, reverse, direction, south, sign, keyboard, button

func SquareArrowDownLeft

func SquareArrowDownLeft(opts ...Option) templ.Component

SquareArrowDownLeft creates a square-arrow-down-left icon Tags: direction, south-west, diagonal, sign, turn, keyboard, button

func SquareArrowDownRight

func SquareArrowDownRight(opts ...Option) templ.Component

SquareArrowDownRight creates a square-arrow-down-right icon Tags: direction, south-east, diagonal, sign, turn, keyboard, button

func SquareArrowLeft

func SquareArrowLeft(opts ...Option) templ.Component

SquareArrowLeft creates a square-arrow-left icon Tags: previous, back, direction, west, sign, keyboard, button, <-

func SquareArrowOutDownLeft

func SquareArrowOutDownLeft(opts ...Option) templ.Component

SquareArrowOutDownLeft creates a square-arrow-out-down-left icon Tags: outwards, direction, south-west, diagonal

func SquareArrowOutDownRight

func SquareArrowOutDownRight(opts ...Option) templ.Component

SquareArrowOutDownRight creates a square-arrow-out-down-right icon Tags: outwards, direction, south-east, diagonal

func SquareArrowOutUpLeft

func SquareArrowOutUpLeft(opts ...Option) templ.Component

SquareArrowOutUpLeft creates a square-arrow-out-up-left icon Tags: outwards, direction, north-west, diagonal

func SquareArrowOutUpRight

func SquareArrowOutUpRight(opts ...Option) templ.Component

SquareArrowOutUpRight creates a square-arrow-out-up-right icon Tags: outwards, direction, north-east, diagonal, share, open, external, link

func SquareArrowRight

func SquareArrowRight(opts ...Option) templ.Component

SquareArrowRight creates a square-arrow-right icon Tags: next, forward, direction, west, sign, keyboard, button, ->

func SquareArrowUp

func SquareArrowUp(opts ...Option) templ.Component

SquareArrowUp creates a square-arrow-up icon Tags: forward, direction, north, sign, keyboard, button

func SquareArrowUpLeft

func SquareArrowUpLeft(opts ...Option) templ.Component

SquareArrowUpLeft creates a square-arrow-up-left icon Tags: direction, north-west, diagonal, sign, keyboard, button

func SquareArrowUpRight

func SquareArrowUpRight(opts ...Option) templ.Component

SquareArrowUpRight creates a square-arrow-up-right icon Tags: direction, north-east, diagonal, sign, keyboard, button, share

func SquareAsterisk

func SquareAsterisk(opts ...Option) templ.Component

SquareAsterisk creates a square-asterisk icon Tags: password, secret, access, key, multiply, multiplication, glob pattern, wildcard, *

func SquareBottomDashedScissors

func SquareBottomDashedScissors(opts ...Option) templ.Component

SquareBottomDashedScissors creates a square-bottom-dashed-scissors icon Tags: cut, snippet, chop, stationery, crafts

func SquareChartGantt

func SquareChartGantt(opts ...Option) templ.Component

SquareChartGantt creates a square-chart-gantt icon Tags: projects, manage, overview, roadmap, plan, intentions, timeline, deadline, date, event, range, period, productivity, work, agile, code, coding, toolbar, button

func SquareCheck

func SquareCheck(opts ...Option) templ.Component

SquareCheck creates a square-check icon Tags: done, todo, tick, complete, task

func SquareCheckBig

func SquareCheckBig(opts ...Option) templ.Component

SquareCheckBig creates a square-check-big icon Tags: done, todo, tick, complete, task

func SquareChevronDown

func SquareChevronDown(opts ...Option) templ.Component

SquareChevronDown creates a square-chevron-down icon Tags: back, menu, panel

func SquareChevronLeft

func SquareChevronLeft(opts ...Option) templ.Component

SquareChevronLeft creates a square-chevron-left icon Tags: back, previous, less than, fewer, menu, panel, button, keyboard, <

func SquareChevronRight

func SquareChevronRight(opts ...Option) templ.Component

SquareChevronRight creates a square-chevron-right icon Tags: forward, next, more than, greater, menu, panel, code, coding, command line, terminal, prompt, shell, console, >

func SquareChevronUp

func SquareChevronUp(opts ...Option) templ.Component

SquareChevronUp creates a square-chevron-up icon Tags: caret, keyboard, button, mac, control, ctrl, superscript, exponential, power, ahead, menu, panel, ^

func SquareCode

func SquareCode(opts ...Option) templ.Component

SquareCode creates a square-code icon Tags: gist, source, programming, html, xml, coding

func SquareDashed

func SquareDashed(opts ...Option) templ.Component

SquareDashed creates a square-dashed icon Tags: selection, square, rectangular, marquee, tool, dashed, box

func SquareDashedBottom

func SquareDashedBottom(opts ...Option) templ.Component

SquareDashedBottom creates a square-dashed-bottom icon Tags: rectangle, aspect ratio, 1:1, shape, snippet, code, coding

func SquareDashedBottomCode

func SquareDashedBottomCode(opts ...Option) templ.Component

SquareDashedBottomCode creates a square-dashed-bottom-code icon Tags: rectangle, aspect ratio, 1:1, shape, snippet, code, coding

func SquareDashedKanban

func SquareDashedKanban(opts ...Option) templ.Component

SquareDashedKanban creates a square-dashed-kanban icon Tags: projects, manage, overview, board, tickets, issues, roadmap, plan, intentions, productivity, work, agile, draft, template, boilerplate, code, coding

func SquareDashedMousePointer

func SquareDashedMousePointer(opts ...Option) templ.Component

SquareDashedMousePointer creates a square-dashed-mouse-pointer icon Tags: inspector, element, mouse, click, pointer, box, browser, selector, target, dom, node

func SquareDashedTopSolid

func SquareDashedTopSolid(opts ...Option) templ.Component

SquareDashedTopSolid creates a square-dashed-top-solid icon Tags: square, border, width, layout, style, design, rectangular, marquee, dashed, box, rectangle, aspect ratio, 1:1

func SquareDivide

func SquareDivide(opts ...Option) templ.Component

SquareDivide creates a square-divide icon Tags: calculate, math, ÷, /

func SquareDot

func SquareDot(opts ...Option) templ.Component

SquareDot creates a square-dot icon Tags: git, diff, modified, .

func SquareEqual

func SquareEqual(opts ...Option) templ.Component

SquareEqual creates a square-equal icon Tags: calculate, =

func SquareFunction

func SquareFunction(opts ...Option) templ.Component

SquareFunction creates a square-function icon Tags: programming, code, automation, math

func SquareKanban

func SquareKanban(opts ...Option) templ.Component

SquareKanban creates a square-kanban icon Tags: projects, manage, overview, board, tickets, issues, roadmap, plan, intentions, productivity, work, agile, code, coding, toolbar, button

func SquareLibrary

func SquareLibrary(opts ...Option) templ.Component

SquareLibrary creates a square-library icon Tags: books, reading, written, authors, stories, fiction, novels, information, knowledge, education, high school, university, college, academy, learning, study, research, collection, vinyl, records, albums, music, package

func SquareM

func SquareM(opts ...Option) templ.Component

SquareM creates a square-m icon Tags: metro, subway, underground, track, line

func SquareMenu

func SquareMenu(opts ...Option) templ.Component

SquareMenu creates a square-menu icon Tags: bars, navigation, hamburger, options, menu bar, panel

func SquareMinus

func SquareMinus(opts ...Option) templ.Component

SquareMinus creates a square-minus icon Tags: subtract, remove, decrease, reduce, calculator, button, keyboard, line, divider, separator, horizontal rule, hr, html, markup, markdown, ---, toolbar, operator, code, coding, minimum, downgrade

func SquareMousePointer

func SquareMousePointer(opts ...Option) templ.Component

SquareMousePointer creates a square-mouse-pointer icon Tags: inspector, element, mouse, click, pointer, box, browser, selector, target, dom, node

func SquareParking

func SquareParking(opts ...Option) templ.Component

SquareParking creates a square-parking icon Tags: parking lot, car park

func SquareParkingOff

func SquareParkingOff(opts ...Option) templ.Component

SquareParkingOff creates a square-parking-off icon Tags: parking lot, car park, no parking

func SquarePause

func SquarePause(opts ...Option) templ.Component

SquarePause creates a square-pause icon Tags: music, audio, stop

func SquarePen

func SquarePen(opts ...Option) templ.Component

SquarePen creates a square-pen icon Tags: pencil, edit, change, create, draw, sketch, draft, writer, writing, biro, ink, marker, felt tip, stationery, artist

func SquarePercent

func SquarePercent(opts ...Option) templ.Component

SquarePercent creates a square-percent icon Tags: verified, unverified, sale, discount, offer, marketing, sticker, price tag

func SquarePi

func SquarePi(opts ...Option) templ.Component

SquarePi creates a square-pi icon Tags: constant, code, coding, programming, symbol, trigonometry, geometry, formula

func SquarePilcrow

func SquarePilcrow(opts ...Option) templ.Component

SquarePilcrow creates a square-pilcrow icon Tags: paragraph, mark, paraph, blind, typography, type, text, prose, symbol

func SquarePlay

func SquarePlay(opts ...Option) templ.Component

SquarePlay creates a square-play icon Tags: music, audio, video, start, run

func SquarePlus

func SquarePlus(opts ...Option) templ.Component

SquarePlus creates a square-plus icon Tags: add, new, increase, increment, positive, calculate, calculator, button, keyboard, toolbar, maximum, upgrade, extra, operator, join, concatenate, code, coding, +

func SquarePower

func SquarePower(opts ...Option) templ.Component

SquarePower creates a square-power icon Tags: on, off, device, switch, toggle, binary, boolean, reboot, restart, button, keyboard, troubleshoot

func SquareRadical

func SquareRadical(opts ...Option) templ.Component

SquareRadical creates a square-radical icon Tags: calculate, formula, math, operator, root, square, symbol

func SquareRoundCorner

func SquareRoundCorner(opts ...Option) templ.Component

SquareRoundCorner creates a square-round-corner icon Tags: border, radius, style, design, corner, layout, round, rounded

func SquareScissors

func SquareScissors(opts ...Option) templ.Component

SquareScissors creates a square-scissors icon Tags: cut, snippet, chop, stationery, crafts, toolbar, button

func SquareSigma

func SquareSigma(opts ...Option) templ.Component

SquareSigma creates a square-sigma icon Tags: sum, calculate, formula, math, enumeration, enumerate

func SquareSlash

func SquareSlash(opts ...Option) templ.Component

SquareSlash creates a square-slash icon Tags: git, diff, ignored, divide, division, shortcut, or, /

func SquareSplitHorizontal

func SquareSplitHorizontal(opts ...Option) templ.Component

SquareSplitHorizontal creates a square-split-horizontal icon Tags: split, divide

func SquareSplitVertical

func SquareSplitVertical(opts ...Option) templ.Component

SquareSplitVertical creates a square-split-vertical icon Tags: split, divide

func SquareSquare

func SquareSquare(opts ...Option) templ.Component

SquareSquare creates a square-square icon Tags: float, center, rectangle

func SquareStack

func SquareStack(opts ...Option) templ.Component

SquareStack creates a square-stack icon Tags: versions, clone, copy, duplicate, multiple, revisions, version control, backup, history

func SquareStar

func SquareStar(opts ...Option) templ.Component

SquareStar creates a square-star icon Tags: badge, medal, honour, decoration, order, pin, laurel, trophy, medallion, insignia, bronze, silver, gold

func SquareStop

func SquareStop(opts ...Option) templ.Component

SquareStop creates a square-stop icon Tags: media, music

func SquareTerminal

func SquareTerminal(opts ...Option) templ.Component

SquareTerminal creates a square-terminal icon Tags: code, command line, prompt, shell

func SquareUser

func SquareUser(opts ...Option) templ.Component

SquareUser creates a square-user icon Tags: person, account, contact

func SquareUserRound

func SquareUserRound(opts ...Option) templ.Component

SquareUserRound creates a square-user-round icon Tags: person, account, contact

func SquareX

func SquareX(opts ...Option) templ.Component

SquareX creates a square-x icon Tags: cancel, close, delete, remove, times, clear, math, multiply, multiplication

func SquaresExclude

func SquaresExclude(opts ...Option) templ.Component

SquaresExclude creates a squares-exclude icon Tags: square, pathfinder, path, exclude, invert, xor, shape, vector

func SquaresIntersect

func SquaresIntersect(opts ...Option) templ.Component

SquaresIntersect creates a squares-intersect icon Tags: square, pathfinder, path, intersect, shape, include, vector

func SquaresSubtract

func SquaresSubtract(opts ...Option) templ.Component

SquaresSubtract creates a squares-subtract icon Tags: square, pathfinder, path, minus, subtract, subtraction, shape, front, vector

func SquaresUnite

func SquaresUnite(opts ...Option) templ.Component

SquaresUnite creates a squares-unite icon Tags: square, pathfinder, path, unite, union, shape, merge, vector

func Squircle

func Squircle(opts ...Option) templ.Component

Squircle creates a squircle icon Tags: shape

func SquircleDashed

func SquircleDashed(opts ...Option) templ.Component

SquircleDashed creates a squircle-dashed icon Tags: shape, pending, progress, issue, draft, code, coding, version control

func Squirrel

func Squirrel(opts ...Option) templ.Component

Squirrel creates a squirrel icon Tags: animal, rodent, pet, pest, nuts, retrieve, updates, storage, stash

func Stamp

func Stamp(opts ...Option) templ.Component

Stamp creates a stamp icon Tags: mark, print, clone, loyalty, library

func Star

func Star(opts ...Option) templ.Component

Star creates a star icon Tags: bookmark, favorite, like, review, rating

func StarHalf

func StarHalf(opts ...Option) templ.Component

StarHalf creates a star-half icon Tags: bookmark, favorite, like, review, rating

func StarOff

func StarOff(opts ...Option) templ.Component

StarOff creates a star-off icon Tags: dislike, unlike, remove, unrate

func StepBack

func StepBack(opts ...Option) templ.Component

StepBack creates a step-back icon Tags: arrow, previous, music, left, reverse

func StepForward

func StepForward(opts ...Option) templ.Component

StepForward creates a step-forward icon Tags: arrow, next, music, right, continue

func Stethoscope

func Stethoscope(opts ...Option) templ.Component

Stethoscope creates a stethoscope icon Tags: phonendoscope, medical, heart, lungs, sound

func Sticker

func Sticker(opts ...Option) templ.Component

Sticker creates a sticker icon Tags: reaction, emotion, smile, happy, feedback

func StickyNote

func StickyNote(opts ...Option) templ.Component

StickyNote creates a sticky-note icon Tags: post-it, comment, annotation, reaction, memo, reminder, todo, task, idea, brainstorm, document, page, paper, sheet, stationary, office

func Stone

func Stone(opts ...Option) templ.Component

Stone creates a stone icon Tags: mineral, geology, nature, solid, pebble, crystal, ore, hard, coal, stone, rock, boulder

func Store

func Store(opts ...Option) templ.Component

Store creates a store icon Tags: shop, supermarket, stand, boutique, building

func StretchHorizontal

func StretchHorizontal(opts ...Option) templ.Component

StretchHorizontal creates a stretch-horizontal icon Tags: items, flex, justify, distribute

func StretchVertical

func StretchVertical(opts ...Option) templ.Component

StretchVertical creates a stretch-vertical icon Tags: items, flex, justify, distribute

func Strikethrough

func Strikethrough(opts ...Option) templ.Component

Strikethrough creates a strikethrough icon Tags: cross out, delete, remove, format

func Subscript

func Subscript(opts ...Option) templ.Component

Subscript creates a subscript icon Tags: text

func Sun

func Sun(opts ...Option) templ.Component

Sun creates a sun icon Tags: brightness, weather, light, summer

func SunDim

func SunDim(opts ...Option) templ.Component

SunDim creates a sun-dim icon Tags: brightness, dim, low, brightness low

func SunMedium

func SunMedium(opts ...Option) templ.Component

SunMedium creates a sun-medium icon Tags: brightness, medium

func SunMoon

func SunMoon(opts ...Option) templ.Component

SunMoon creates a sun-moon icon Tags: dark, light, moon, sun, brightness, theme, auto theme, system theme, appearance

func SunSnow

func SunSnow(opts ...Option) templ.Component

SunSnow creates a sun-snow icon Tags: weather, air conditioning, temperature, hot, cold, seasons

func Sunrise

func Sunrise(opts ...Option) templ.Component

Sunrise creates a sunrise icon Tags: weather, time, morning, day

func Sunset

func Sunset(opts ...Option) templ.Component

Sunset creates a sunset icon Tags: weather, time, evening, night

func Superscript

func Superscript(opts ...Option) templ.Component

Superscript creates a superscript icon Tags: text, exponent

func SwatchBook

func SwatchBook(opts ...Option) templ.Component

SwatchBook creates a swatch-book icon Tags: colors, colours, swatches, pantone, shades, tint, hue, saturation, brightness, theme, scheme, palette, samples, textile, carpet

func SwissFranc

func SwissFranc(opts ...Option) templ.Component

SwissFranc creates a swiss-franc icon Tags: currency, money, payment

func SwitchCamera

func SwitchCamera(opts ...Option) templ.Component

SwitchCamera creates a switch-camera icon Tags: photo, selfie, front, back

func Sword

func Sword(opts ...Option) templ.Component

Sword creates a sword icon Tags: battle, challenge, game, war, weapon

func Swords

func Swords(opts ...Option) templ.Component

Swords creates a swords icon Tags: battle, challenge, game, war, weapon

func Syringe

func Syringe(opts ...Option) templ.Component

Syringe creates a syringe icon Tags: medicine, medical, needle, pump, plunger, nozzle, blood

func Table

func Table(opts ...Option) templ.Component

Table creates a table icon Tags: spreadsheet, grid

func Table2

func Table2(opts ...Option) templ.Component

Table2 creates a table-2 icon Tags: spreadsheet, grid

func TableCellsMerge

func TableCellsMerge(opts ...Option) templ.Component

TableCellsMerge creates a table-cells-merge icon Tags: spreadsheet, grid, row

func TableCellsSplit

func TableCellsSplit(opts ...Option) templ.Component

TableCellsSplit creates a table-cells-split icon Tags: spreadsheet, grid, row

func TableColumnsSplit

func TableColumnsSplit(opts ...Option) templ.Component

TableColumnsSplit creates a table-columns-split icon Tags: spreadsheet, grid, cut, break, divide, separate, segment

func TableOfContents

func TableOfContents(opts ...Option) templ.Component

TableOfContents creates a table-of-contents icon Tags: toc, outline, navigation, document structure, index, overview, sections, chapters, content, documentation, manual, knowledge base, faq

func TableProperties

func TableProperties(opts ...Option) templ.Component

TableProperties creates a table-properties icon Tags: property list, plist, spreadsheet, grid, dictionary, object, hash

func TableRowsSplit

func TableRowsSplit(opts ...Option) templ.Component

TableRowsSplit creates a table-rows-split icon Tags: spreadsheet, grid, cut, break, divide, separate, segment

func Tablet

func Tablet(opts ...Option) templ.Component

Tablet creates a tablet icon Tags: device

func TabletSmartphone

func TabletSmartphone(opts ...Option) templ.Component

TabletSmartphone creates a tablet-smartphone icon Tags: responsive, screens, browser, testing, mobile

func Tablets

func Tablets(opts ...Option) templ.Component

Tablets creates a tablets icon Tags: medicine, medication, drug, prescription, pills, pharmacy

func Tag

func Tag(opts ...Option) templ.Component

Tag creates a tag icon Tags: label, badge, ticket, mark

func Tags

func Tags(opts ...Option) templ.Component

Tags creates a tags icon Tags: labels, badges, tickets, marks, copy, multiple

func Tally1

func Tally1(opts ...Option) templ.Component

Tally1 creates a tally-1 icon Tags: count, score, enumerate, days, one, 1, first, bar, prison, cell, sentence

func Tally2

func Tally2(opts ...Option) templ.Component

Tally2 creates a tally-2 icon Tags: count, score, enumerate, days, two, 2, second, double, bars, prison, cell, sentence

func Tally3

func Tally3(opts ...Option) templ.Component

Tally3 creates a tally-3 icon Tags: count, score, enumerate, days, three, 3, third, triple, bars, prison, cell, sentence

func Tally4

func Tally4(opts ...Option) templ.Component

Tally4 creates a tally-4 icon Tags: count, score, enumerate, days, 4, fourth, quadruple, bars, prison, cell, sentence

func Tally5

func Tally5(opts ...Option) templ.Component

Tally5 creates a tally-5 icon Tags: count, score, enumerate, days, five, 5, fifth, bars, prison, cell, sentence, slash, /

func Tangent

func Tangent(opts ...Option) templ.Component

Tangent creates a tangent icon Tags: tangential, shape, circle, geometry, trigonometry, bezier curve

func Target

func Target(opts ...Option) templ.Component

Target creates a target icon Tags: logo, bullseye, deadline, projects, overview, work, productivity

func Telescope

func Telescope(opts ...Option) templ.Component

Telescope creates a telescope icon Tags: astronomy, space, discovery, exploration, explore, vision, perspective, focus, stargazing, observe, view

func Tent

func Tent(opts ...Option) templ.Component

Tent creates a tent icon Tags: tipi, teepee, wigwam, lodge, camping, campsite, holiday, retreat, nomadic, native american, indian, wilderness, outdoors

func TentTree

func TentTree(opts ...Option) templ.Component

TentTree creates a tent-tree icon Tags: camping, campsite, holiday, retreat, nomadic, wilderness, outdoors

func Terminal

func Terminal(opts ...Option) templ.Component

Terminal creates a terminal icon Tags: code, command line, prompt, shell

func TestTube

func TestTube(opts ...Option) templ.Component

TestTube creates a test-tube icon Tags: tube, vial, phial, flask, ampoule, ampule, lab, chemistry, experiment, test

func TestTubeDiagonal

func TestTubeDiagonal(opts ...Option) templ.Component

TestTubeDiagonal creates a test-tube-diagonal icon Tags: tube, vial, phial, flask, ampoule, ampule, lab, chemistry, experiment, test

func TestTubes

func TestTubes(opts ...Option) templ.Component

TestTubes creates a test-tubes icon Tags: tubes, vials, phials, flasks, ampoules, ampules, lab, chemistry, experiment, test

func TextAlignCenter

func TextAlignCenter(opts ...Option) templ.Component

TextAlignCenter creates a text-align-center icon Tags: text, alignment, center

func TextAlignEnd

func TextAlignEnd(opts ...Option) templ.Component

TextAlignEnd creates a text-align-end icon Tags: text, alignment, right

func TextAlignJustify

func TextAlignJustify(opts ...Option) templ.Component

TextAlignJustify creates a text-align-justify icon Tags: text, alignment, justified, menu, list

func TextAlignStart

func TextAlignStart(opts ...Option) templ.Component

TextAlignStart creates a text-align-start icon Tags: text, alignment, left, list

func TextCursor

func TextCursor(opts ...Option) templ.Component

TextCursor creates a text-cursor icon Tags: select

func TextCursorInput

func TextCursorInput(opts ...Option) templ.Component

TextCursorInput creates a text-cursor-input icon Tags: select

func TextInitial

func TextInitial(opts ...Option) templ.Component

TextInitial creates a text-initial icon Tags: drop cap, text, format, typography, letter, font size

func TextQuote

func TextQuote(opts ...Option) templ.Component

TextQuote creates a text-quote icon Tags: blockquote, quotation, indent, reply, response

func TextSearch

func TextSearch(opts ...Option) templ.Component

TextSearch creates a text-search icon Tags: find, data, copy, txt, pdf, document, scan, magnifier, magnifying glass, lens

func TextSelect

func TextSelect(opts ...Option) templ.Component

TextSelect creates a text-select icon Tags: find, search, selection, dashed

func TextWrap

func TextWrap(opts ...Option) templ.Component

TextWrap creates a text-wrap icon Tags: words, lines, break, paragraph

func Theater

func Theater(opts ...Option) templ.Component

Theater creates a theater icon Tags: theater, theatre, entertainment, podium, stage, musical

func Thermometer

func Thermometer(opts ...Option) templ.Component

Thermometer creates a thermometer icon Tags: temperature, celsius, fahrenheit, weather

func ThermometerSnowflake

func ThermometerSnowflake(opts ...Option) templ.Component

ThermometerSnowflake creates a thermometer-snowflake icon Tags: temperature, celsius, fahrenheit, weather, cold, freeze, freezing

func ThermometerSun

func ThermometerSun(opts ...Option) templ.Component

ThermometerSun creates a thermometer-sun icon Tags: temperature, celsius, fahrenheit, weather, warm, hot

func ThumbsDown

func ThumbsDown(opts ...Option) templ.Component

ThumbsDown creates a thumbs-down icon Tags: dislike, bad, emotion

func ThumbsUp

func ThumbsUp(opts ...Option) templ.Component

ThumbsUp creates a thumbs-up icon Tags: like, good, emotion

func Ticket

func Ticket(opts ...Option) templ.Component

Ticket creates a ticket icon Tags: entry, pass, voucher, event, concert, show, perforated, dashed

func TicketCheck

func TicketCheck(opts ...Option) templ.Component

TicketCheck creates a ticket-check icon Tags: entry, pass, voucher, event, concert, show, booked, purchased, receipt, redeemed, validated, verified, certified, checked, used

func TicketMinus

func TicketMinus(opts ...Option) templ.Component

TicketMinus creates a ticket-minus icon Tags: entry, pass, voucher, event, concert, show, remove, cancel, unbook, subtract, decrease, -

func TicketPercent

func TicketPercent(opts ...Option) templ.Component

TicketPercent creates a ticket-percent icon Tags: discount, reduced, offer, voucher, entry, pass, event, concert, show, book, purchase, %

func TicketPlus

func TicketPlus(opts ...Option) templ.Component

TicketPlus creates a ticket-plus icon Tags: entry, pass, voucher, event, concert, show, book, purchase, add, +

func TicketSlash

func TicketSlash(opts ...Option) templ.Component

TicketSlash creates a ticket-slash icon Tags: entry, pass, voucher, event, concert, show, redeemed, used, marked, checked, verified, spoiled, invalidated, void, denied, refused, banned, barred, forbidden, prohibited, cancelled, cancellation, refunded, delete, remove, clear, error

func TicketX

func TicketX(opts ...Option) templ.Component

TicketX creates a ticket-x icon Tags: entry, pass, voucher, event, concert, show, cancelled, cancellation, refunded, used, void, invalidated, spoiled, denied, refused, banned, barred, forbidden, prohibited, delete, remove, clear, error, x

func Tickets

func Tickets(opts ...Option) templ.Component

Tickets creates a tickets icon Tags: trip, travel, pass, entry, voucher, event, concert, show, perforated, dashed

func TicketsPlane

func TicketsPlane(opts ...Option) templ.Component

TicketsPlane creates a tickets-plane icon Tags: plane, trip, airplane, flight, travel, fly, takeoff, vacation, passenger, pass, check-in, airport

func Timer

func Timer(opts ...Option) templ.Component

Timer creates a timer icon Tags: time, timer, stopwatch

func TimerOff

func TimerOff(opts ...Option) templ.Component

TimerOff creates a timer-off icon Tags: time, timer, stopwatch

func TimerReset

func TimerReset(opts ...Option) templ.Component

TimerReset creates a timer-reset icon Tags: time, timer, stopwatch

func ToggleLeft

func ToggleLeft(opts ...Option) templ.Component

ToggleLeft creates a toggle-left icon Tags: on, off, switch, boolean

func ToggleRight

func ToggleRight(opts ...Option) templ.Component

ToggleRight creates a toggle-right icon Tags: on, off, switch, boolean

func Toilet

func Toilet(opts ...Option) templ.Component

Toilet creates a toilet icon Tags: toilet, potty, bathroom, washroom

func ToolCase

func ToolCase(opts ...Option) templ.Component

ToolCase creates a tool-case icon Tags: tools, maintenance, repair

func Toolbox

func Toolbox(opts ...Option) templ.Component

Toolbox creates a toolbox icon Tags: toolkit, tools, trunk, chest, box, storage, utility, utilities, container, kit, set, repair, fix, service, maintenance, mechanic, workshop, construction, hardware, equipment, gear, handyman, engineering, craft, diy

func Tornado

func Tornado(opts ...Option) templ.Component

Tornado creates a tornado icon Tags: weather, wind, storm, hurricane

func Torus

func Torus(opts ...Option) templ.Component

Torus creates a torus icon Tags: donut, doughnut, ring, hollow, 3d, fast food, junk food, snack, treat, sweet, sugar, dessert

func Touchpad

func Touchpad(opts ...Option) templ.Component

Touchpad creates a touchpad icon Tags: trackpad, cursor

func TouchpadOff

func TouchpadOff(opts ...Option) templ.Component

TouchpadOff creates a touchpad-off icon Tags: trackpad, cursor

func TowerControl

func TowerControl(opts ...Option) templ.Component

TowerControl creates a tower-control icon Tags: airport, travel, tower, transportation, lighthouse

func ToyBrick

func ToyBrick(opts ...Option) templ.Component

ToyBrick creates a toy-brick icon Tags: lego, block, addon, plugin, integration

func Tractor

func Tractor(opts ...Option) templ.Component

Tractor creates a tractor icon Tags: farming, farmer, ranch, harvest, equipment, vehicle

func TrafficCone

func TrafficCone(opts ...Option) templ.Component

TrafficCone creates a traffic-cone icon Tags: roadworks, tarmac, safety, block

func TrainFront

func TrainFront(opts ...Option) templ.Component

TrainFront creates a train-front icon Tags: railway, metro, subway, underground, high-speed, bullet, fast, track, line

func TrainFrontTunnel

func TrainFrontTunnel(opts ...Option) templ.Component

TrainFrontTunnel creates a train-front-tunnel icon Tags: railway, metro, subway, underground, speed, bullet, fast, track, line

func TrainTrack

func TrainTrack(opts ...Option) templ.Component

TrainTrack creates a train-track icon Tags: railway, line

func TramFront

func TramFront(opts ...Option) templ.Component

TramFront creates a tram-front icon Tags: railway, metro, subway, underground, track, line, tourism

func Transgender

func Transgender(opts ...Option) templ.Component

Transgender creates a transgender icon Tags: gender, inclusive

func Trash

func Trash(opts ...Option) templ.Component

Trash creates a trash icon Tags: empty, deletion, cleanup, junk, clear, garbage, delete, remove, bin, waste, recycle, discard, binoculars, rubbish

func Trash2

func Trash2(opts ...Option) templ.Component

Trash2 creates a trash-2 icon Tags: garbage, delete, remove, bin

func TreeDeciduous

func TreeDeciduous(opts ...Option) templ.Component

TreeDeciduous creates a tree-deciduous icon Tags: tree, forest, park, nature

func TreePalm

func TreePalm(opts ...Option) templ.Component

TreePalm creates a tree-palm icon Tags: vacation, leisure, island

func TreePine

func TreePine(opts ...Option) templ.Component

TreePine creates a tree-pine icon Tags: tree, pine, forest, park, nature

func Trees

func Trees(opts ...Option) templ.Component

Trees creates a trees icon Tags: tree, forest, park, nature

func Trello

func Trello(opts ...Option) templ.Component

Trello creates a trello icon Tags: logo, brand

func TrendingDown

func TrendingDown(opts ...Option) templ.Component

TrendingDown creates a trending-down icon Tags: statistics

func TrendingUp

func TrendingUp(opts ...Option) templ.Component

TrendingUp creates a trending-up icon Tags: statistics

func TrendingUpDown

func TrendingUpDown(opts ...Option) templ.Component

TrendingUpDown creates a trending-up-down icon Tags: arrows, estimated, indeterminate, data fluctuation, uncertain, forecast, variable, prediction, dynamic, volatile

func Triangle

func Triangle(opts ...Option) templ.Component

Triangle creates a triangle icon Tags: equilateral, delta, shape, pyramid, hierarchy

func TriangleAlert

func TriangleAlert(opts ...Option) templ.Component

TriangleAlert creates a triangle-alert icon Tags: warning, alert, danger, exclamation mark, linter

func TriangleDashed

func TriangleDashed(opts ...Option) templ.Component

TriangleDashed creates a triangle-dashed icon Tags: equilateral, delta, shape, pyramid, hierarchy, dashed

func TriangleRight

func TriangleRight(opts ...Option) templ.Component

TriangleRight creates a triangle-right icon Tags: volume, controls, controller, tv remote, geometry, delta, ramp, slope, incline, increase

func Trophy

func Trophy(opts ...Option) templ.Component

Trophy creates a trophy icon Tags: prize, sports, winner, achievement, award, champion, celebration, victory

func Truck

func Truck(opts ...Option) templ.Component

Truck creates a truck icon Tags: delivery, van, shipping, haulage, lorry

func TruckElectric

func TruckElectric(opts ...Option) templ.Component

TruckElectric creates a truck-electric icon Tags: delivery, van, shipping, haulage, lorry, electric

func TurkishLira

func TurkishLira(opts ...Option) templ.Component

TurkishLira creates a turkish-lira icon Tags: currency, money, payment

func Turntable

func Turntable(opts ...Option) templ.Component

Turntable creates a turntable icon Tags: record player, gramophone, stereo, phonograph, vinyl, lp, disc, platter, cut, music, analog, retro, dj deck, disc jockey, scratch, spinning

func Turtle

func Turtle(opts ...Option) templ.Component

Turtle creates a turtle icon Tags: animal, pet, tortoise, slow, speed

func Tv

func Tv(opts ...Option) templ.Component

Tv creates a tv icon Tags: television, stream, display, widescreen, high-definition, hd, 1080p, 4k, 8k, smart, digital, video, entertainment, showtime, channels, terrestrial, satellite, cable, broadcast, live, frequency, tune, scan, aerial, receiver, transmission, signal, connection, connectivity

func TvMinimal

func TvMinimal(opts ...Option) templ.Component

TvMinimal creates a tv-minimal icon Tags: flatscreen, television, stream, display, widescreen, high-definition, hd, 1080p, 4k, 8k, smart, digital, video, home cinema, entertainment, showtime, channels, catchup

func TvMinimalPlay

func TvMinimalPlay(opts ...Option) templ.Component

TvMinimalPlay creates a tv-minimal-play icon Tags: flatscreen, television, stream, display, widescreen, high-definition, hd, 1080p, 4k, 8k, smart, digital, video, movie, live, ott, running, start, film, home cinema, entertainment, showtime, channels, catchup

func Twitch

func Twitch(opts ...Option) templ.Component

Twitch creates a twitch icon Tags: logo, social

func Twitter

func Twitter(opts ...Option) templ.Component

Twitter creates a twitter icon Tags: logo, social

func TypeIcon

func TypeIcon(opts ...Option) templ.Component

TypeIcon creates a type icon Tags: text, font, typography

func TypeOutline

func TypeOutline(opts ...Option) templ.Component

TypeOutline creates a type-outline icon Tags: text, font, typography, silhouette, profile, contour, stroke, line

func Umbrella

func Umbrella(opts ...Option) templ.Component

Umbrella creates a umbrella icon Tags: rain, weather

func UmbrellaOff

func UmbrellaOff(opts ...Option) templ.Component

UmbrellaOff creates a umbrella-off icon Tags: rain, weather, uncovered, uninsured, antivirus, unprotected, risky

func Underline

func Underline(opts ...Option) templ.Component

Underline creates a underline icon Tags: text, format

func Undo

func Undo(opts ...Option) templ.Component

Undo creates a undo icon Tags: redo, rerun, history

func Undo2

func Undo2(opts ...Option) templ.Component

Undo2 creates a undo-2 icon Tags: redo, rerun, history, back, return, reverse, revert, direction, u-turn

func UndoDot

func UndoDot(opts ...Option) templ.Component

UndoDot creates a undo-dot icon Tags: redo, history, step, back

func UnfoldHorizontal

func UnfoldHorizontal(opts ...Option) templ.Component

UnfoldHorizontal creates a unfold-horizontal icon Tags: arrow, collapse, fold, vertical, dashed

func UnfoldVertical

func UnfoldVertical(opts ...Option) templ.Component

UnfoldVertical creates a unfold-vertical icon Tags: arrow, expand, vertical, dashed

func Ungroup

func Ungroup(opts ...Option) templ.Component

Ungroup creates a ungroup icon Tags: cubes, packages, parts, units, collection, cluster, separate

func University

func University(opts ...Option) templ.Component

University creates a university icon Tags: building, education, childhood, school, college, academy, institute

func Unlink(opts ...Option) templ.Component

Unlink creates a unlink icon Tags: url, unchain

func Unlink2

func Unlink2(opts ...Option) templ.Component

Unlink2 creates a unlink-2 icon Tags: url, unchain

func Unplug

func Unplug(opts ...Option) templ.Component

Unplug creates a unplug icon Tags: electricity, energy, electronics, socket, outlet, disconnect

func Upload

func Upload(opts ...Option) templ.Component

Upload creates a upload icon Tags: file

func Usb

func Usb(opts ...Option) templ.Component

Usb creates a usb icon Tags: universal, serial, bus, controller, connector, interface

func User

func User(opts ...Option) templ.Component

User creates a user icon Tags: person, account, contact

func UserCheck

func UserCheck(opts ...Option) templ.Component

UserCheck creates a user-check icon Tags: followed, subscribed, done, todo, tick, complete, task

func UserCog

func UserCog(opts ...Option) templ.Component

UserCog creates a user-cog icon Tags: settings, edit, cog, gear

func UserLock

func UserLock(opts ...Option) templ.Component

UserLock creates a user-lock icon Tags: person, lock, locked, account, secure

func UserMinus

func UserMinus(opts ...Option) templ.Component

UserMinus creates a user-minus icon Tags: delete, remove, unfollow, unsubscribe

func UserPen

func UserPen(opts ...Option) templ.Component

UserPen creates a user-pen icon Tags: person, account, contact, profile, edit, change

func UserPlus

func UserPlus(opts ...Option) templ.Component

UserPlus creates a user-plus icon Tags: new, add, create, follow, subscribe

func UserRound

func UserRound(opts ...Option) templ.Component

UserRound creates a user-round icon Tags: person, account, contact

func UserRoundCheck

func UserRoundCheck(opts ...Option) templ.Component

UserRoundCheck creates a user-round-check icon Tags: followed, subscribed, done, todo, tick, complete, task

func UserRoundCog

func UserRoundCog(opts ...Option) templ.Component

UserRoundCog creates a user-round-cog icon Tags: settings, edit, cog, gear

func UserRoundMinus

func UserRoundMinus(opts ...Option) templ.Component

UserRoundMinus creates a user-round-minus icon Tags: delete, remove, unfollow, unsubscribe

func UserRoundPen

func UserRoundPen(opts ...Option) templ.Component

UserRoundPen creates a user-round-pen icon Tags: person, account, contact, profile, edit, change

func UserRoundPlus

func UserRoundPlus(opts ...Option) templ.Component

UserRoundPlus creates a user-round-plus icon Tags: new, add, create, follow, subscribe

func UserRoundSearch

func UserRoundSearch(opts ...Option) templ.Component

UserRoundSearch creates a user-round-search icon Tags: person, account, contact, find, scan, magnifier, magnifying glass, lens

func UserRoundX

func UserRoundX(opts ...Option) templ.Component

UserRoundX creates a user-round-x icon Tags: delete, remove, unfollow, unsubscribe, unavailable

func UserSearch

func UserSearch(opts ...Option) templ.Component

UserSearch creates a user-search icon Tags: person, account, contact, find, scan, magnifier, magnifying glass, lens

func UserStar

func UserStar(opts ...Option) templ.Component

UserStar creates a user-star icon Tags: person, account, favorite, contact, like, review, rating, admin

func UserX

func UserX(opts ...Option) templ.Component

UserX creates a user-x icon Tags: delete, remove, unfollow, unsubscribe, unavailable

func Users

func Users(opts ...Option) templ.Component

Users creates a users icon Tags: group, people

func UsersRound

func UsersRound(opts ...Option) templ.Component

UsersRound creates a users-round icon Tags: group, people

func Utensils

func Utensils(opts ...Option) templ.Component

Utensils creates a utensils icon Tags: fork, knife, cutlery, flatware, tableware, silverware, food, restaurant, meal, breakfast, dinner, supper

func UtensilsCrossed

func UtensilsCrossed(opts ...Option) templ.Component

UtensilsCrossed creates a utensils-crossed icon Tags: fork, knife, cutlery, flatware, tableware, silverware, food, restaurant, meal, breakfast, dinner, supper

func UtilityPole

func UtilityPole(opts ...Option) templ.Component

UtilityPole creates a utility-pole icon Tags: electricity, energy, transmission line, telegraph pole, power lines, phone

func Van

func Van(opts ...Option) templ.Component

Van creates a van icon Tags: minivan, cart, wagon, truck, lorry, trailer, camper, vehicle, drive, trip, journey, van, transport, carriage, delivery, travel

func Variable

func Variable(opts ...Option) templ.Component

Variable creates a variable icon Tags: code, coding, programming, symbol, calculate, algebra, x, parentheses, parenthesis, brackets, parameter, (, )

func Vault

func Vault(opts ...Option) templ.Component

Vault creates a vault icon Tags: safe, lockbox, deposit, locker, coffer, strongbox, safety, secure, storage, valuables, bank

func VectorSquare

func VectorSquare(opts ...Option) templ.Component

VectorSquare creates a vector-square icon Tags: shape, geometry, art, width, height, size, calculate, measure, select, graphics, box

func Vegan

func Vegan(opts ...Option) templ.Component

Vegan creates a vegan icon Tags: vegetarian, fruitarian, herbivorous, animal rights, diet

func VenetianMask

func VenetianMask(opts ...Option) templ.Component

VenetianMask creates a venetian-mask icon Tags: mask, masquerade, impersonate, secret, incognito

func Venus

func Venus(opts ...Option) templ.Component

Venus creates a venus icon Tags: gender, sex, female, feminine, woman, girl

func VenusAndMars

func VenusAndMars(opts ...Option) templ.Component

VenusAndMars creates a venus-and-mars icon Tags: gender, sex, intersex, androgynous, hermaphrodite

func Vibrate

func Vibrate(opts ...Option) templ.Component

Vibrate creates a vibrate icon Tags: smartphone, notification, rumble, haptic feedback, screen

func VibrateOff

func VibrateOff(opts ...Option) templ.Component

VibrateOff creates a vibrate-off icon Tags: smartphone, notification, rumble, haptic feedback, notifications, screen

func Video

func Video(opts ...Option) templ.Component

Video creates a video icon Tags: camera, movie, film, recording, motion picture, camcorder, reel

func VideoOff

func VideoOff(opts ...Option) templ.Component

VideoOff creates a video-off icon Tags: camera, movie, film

func Videotape

func Videotape(opts ...Option) templ.Component

Videotape creates a videotape icon Tags: vhs, movie, film, recording, motion picture, showreel, cassette

func View

func View(opts ...Option) templ.Component

View creates a view icon Tags: eye, look

func Voicemail

func Voicemail(opts ...Option) templ.Component

Voicemail creates a voicemail icon Tags: phone, cassette, tape, reel, recording, audio

func Volleyball

func Volleyball(opts ...Option) templ.Component

Volleyball creates a volleyball icon Tags: beach, sand, net, holiday, vacation, summer, soccer, football, futbol, kick, pitch, goal, score, bounce, leather, wool, yarn, knitting, sewing, thread, embroidery, textile

func Volume

func Volume(opts ...Option) templ.Component

Volume creates a volume icon Tags: music, sound, mute, speaker

func Volume1

func Volume1(opts ...Option) templ.Component

Volume1 creates a volume-1 icon Tags: music, sound, speaker

func Volume2

func Volume2(opts ...Option) templ.Component

Volume2 creates a volume-2 icon Tags: music, sound, speaker

func VolumeOff

func VolumeOff(opts ...Option) templ.Component

VolumeOff creates a volume-off icon Tags: music, sound, mute, speaker

func VolumeX

func VolumeX(opts ...Option) templ.Component

VolumeX creates a volume-x icon Tags: music, sound, mute, speaker

func Vote

func Vote(opts ...Option) templ.Component

Vote creates a vote icon Tags: vote, poll, ballot, political, social, check, tick

func Wallet

func Wallet(opts ...Option) templ.Component

Wallet creates a wallet icon Tags: money, finance, pocket

func WalletCards

func WalletCards(opts ...Option) templ.Component

WalletCards creates a wallet-cards icon Tags: money, finance, pocket, credit, purchase, payment, shopping, retail, consumer, cc

func WalletMinimal

func WalletMinimal(opts ...Option) templ.Component

WalletMinimal creates a wallet-minimal icon Tags: finance, pocket

func Wallpaper

func Wallpaper(opts ...Option) templ.Component

Wallpaper creates a wallpaper icon Tags: background, texture, image, art, design, visual, decor, pattern, screen, cover, lock screen

func Wand

func Wand(opts ...Option) templ.Component

Wand creates a wand icon Tags: magic, selection

func WandSparkles

func WandSparkles(opts ...Option) templ.Component

WandSparkles creates a wand-sparkles icon Tags: magic, wizard, magician

func Warehouse

func Warehouse(opts ...Option) templ.Component

Warehouse creates a warehouse icon Tags: storage, storehouse, depot, depository, repository, stockroom, logistics, building

func WashingMachine

func WashingMachine(opts ...Option) templ.Component

WashingMachine creates a washing-machine icon Tags: tumble dryer, amenities, electronics, cycle, clothes, rinse, spin, drum

func Watch

func Watch(opts ...Option) templ.Component

Watch creates a watch icon Tags: clock, time

func Waves

func Waves(opts ...Option) templ.Component

Waves creates a waves icon Tags: water, sea, sound, hertz, wavelength, vibrate

func WavesArrowDown

func WavesArrowDown(opts ...Option) templ.Component

WavesArrowDown creates a waves-arrow-down icon Tags: water, sea, level, sound, hertz, wavelength, vibrate, low, tide, ocean, rising, down, falling

func WavesArrowUp

func WavesArrowUp(opts ...Option) templ.Component

WavesArrowUp creates a waves-arrow-up icon Tags: water, sea, level, sound, hertz, wavelength, vibrate, high, tide, ocean, rising

func WavesLadder

func WavesLadder(opts ...Option) templ.Component

WavesLadder creates a waves-ladder icon Tags: swimming, water, pool, lifeguard, ocean, 🌊, 🏊‍♂️, 🏊‍♀️, 🏊, 🥽

func Waypoints

func Waypoints(opts ...Option) templ.Component

Waypoints creates a waypoints icon Tags: indirection, vpn, virtual private network, proxy, connections, bounce, reroute, path, journey, planner, stops, stations, shared, spread, viral

func Webcam

func Webcam(opts ...Option) templ.Component

Webcam creates a webcam icon Tags: camera, security

func Webhook

func Webhook(opts ...Option) templ.Component

Webhook creates a webhook icon Tags: push api, interface, callback

func WebhookOff

func WebhookOff(opts ...Option) templ.Component

WebhookOff creates a webhook-off icon Tags: push api, interface, callback

func Weight

func Weight(opts ...Option) templ.Component

Weight creates a weight icon Tags: mass, heavy, lead, metal, measure, geometry, scales, balance

func WeightTilde

func WeightTilde(opts ...Option) templ.Component

WeightTilde creates a weight-tilde icon Tags: measure, scale, estimate, load, balance, size, measurement, quantity, mass

func Wheat

func Wheat(opts ...Option) templ.Component

Wheat creates a wheat icon Tags: corn, cereal, grain, gluten

func WheatOff

func WheatOff(opts ...Option) templ.Component

WheatOff creates a wheat-off icon Tags: corn, cereal, grain, gluten free, allergy, intolerance, diet

func WholeWord

func WholeWord(opts ...Option) templ.Component

WholeWord creates a whole-word icon Tags: text, selection, letters, characters, font, typography

func Wifi

func Wifi(opts ...Option) templ.Component

Wifi creates a wifi icon Tags: connection, signal, wireless

func WifiCog

func WifiCog(opts ...Option) templ.Component

WifiCog creates a wifi-cog icon Tags: connection, signal, wireless, directory, settings, control, preferences, cog, edit, gear

func WifiHigh

func WifiHigh(opts ...Option) templ.Component

WifiHigh creates a wifi-high icon Tags: connection, signal, wireless

func WifiLow

func WifiLow(opts ...Option) templ.Component

WifiLow creates a wifi-low icon Tags: connection, signal, wireless

func WifiOff

func WifiOff(opts ...Option) templ.Component

WifiOff creates a wifi-off icon Tags: disabled

func WifiPen

func WifiPen(opts ...Option) templ.Component

WifiPen creates a wifi-pen icon Tags: edit, wifi, pen, change, network

func WifiSync

func WifiSync(opts ...Option) templ.Component

WifiSync creates a wifi-sync icon Tags: connection, signal, wireless, synchronize, reconnect, reset, restart

func WifiZero

func WifiZero(opts ...Option) templ.Component

WifiZero creates a wifi-zero icon Tags: connection, signal, wireless

func Wind

func Wind(opts ...Option) templ.Component

Wind creates a wind icon Tags: weather, air, blow

func WindArrowDown

func WindArrowDown(opts ...Option) templ.Component

WindArrowDown creates a wind-arrow-down icon Tags: weather, air, pressure, blow

func Wine

func Wine(opts ...Option) templ.Component

Wine creates a wine icon Tags: alcohol, beverage, bar, drink, glass, sommelier, vineyard, winery

func WineOff

func WineOff(opts ...Option) templ.Component

WineOff creates a wine-off icon Tags: alcohol, beverage, drink, glass, alcohol free, abstinence, abstaining, teetotalism, allergy, intolerance

func Workflow

func Workflow(opts ...Option) templ.Component

Workflow creates a workflow icon Tags: action, continuous integration, ci, automation, devops, network, node, connection

func Worm

func Worm(opts ...Option) templ.Component

Worm creates a worm icon Tags: invertebrate, grub, larva, snake, crawl, wiggle, slither, pest control, computer virus, malware

func Wrench

func Wrench(opts ...Option) templ.Component

Wrench creates a wrench icon Tags: account, settings, spanner, diy, toolbox, build, construction

func X

func X(opts ...Option) templ.Component

X creates a x icon Tags: cancel, close, cross, delete, ex, remove, times, clear, math, multiply, multiplication

func XCircle

func XCircle(opts ...Option) templ.Component

XCircle creates an error/close icon with a circle (alias for CircleX)

func Youtube

func Youtube(opts ...Option) templ.Component

Youtube creates a youtube icon Tags: logo, social, video, play

func Zap

func Zap(opts ...Option) templ.Component

Zap creates a zap icon Tags: flash, camera, lightning, electricity, energy

func ZapOff

func ZapOff(opts ...Option) templ.Component

ZapOff creates a zap-off icon Tags: flash, camera, lightning, electricity, energy

func ZoomIn

func ZoomIn(opts ...Option) templ.Component

ZoomIn creates a zoom-in icon Tags: magnifying glass, plus

func ZoomOut

func ZoomOut(opts ...Option) templ.Component

ZoomOut creates a zoom-out icon Tags: magnifying glass, plus

Types

type Option

type Option func(*Props)

Option is a functional option for configuring icons

func WithAttrs

func WithAttrs(attrs templ.Attributes) Option

WithAttrs adds custom attributes

func WithClass

func WithClass(class string) Option

WithClass adds custom CSS classes

func WithColor

func WithColor(color string) Option

WithColor sets the icon color

func WithSize

func WithSize(size int) Option

WithSize sets the icon size in pixels

func WithStrokeWidth

func WithStrokeWidth(width float64) Option

WithStrokeWidth sets the SVG stroke width

type Props

type Props struct {
	Size        int     // Size in pixels (width and height)
	Color       string  // CSS color value
	StrokeWidth float64 // SVG stroke width
	Class       string  // Additional CSS classes
	Attrs       templ.Attributes
}

Props defines icon configuration

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL