Les icones disponible dans Obsidian
Publié le 23 septembre 2024 - par Andy Cinquin
Obsidian iconsLibs icons
J'y créer un petit script pour windows et linux pour voir toutes les icones disponible dans Obsidian actuellement, ils utilisent Lucide-icon
(https://lucide.dev/icons/) mais n'ont pas la dernière version, voici donc, les petits scripts en questions, et les icones :
#!/bin/bash
# Nom des fichiers de sortie
OUTPUT_FILE_SIMPLE="liste_fichiers_svg.txt"
OUTPUT_FILE_SPECIAL="liste_fichiers_svg_special.txt"
OUTPUT_FILE_SPECIAL_PLUS="icons_obsidian.md"
# Supprime les fichiers de sortie s'ils existent déjà
[ -f "$OUTPUT_FILE_SIMPLE" ] && rm "$OUTPUT_FILE_SIMPLE"
[ -f "$OUTPUT_FILE_SPECIAL" ] && rm "$OUTPUT_FILE_SPECIAL"
[ -f "$OUTPUT_FILE_SPECIAL_PLUS" ] && rm "$OUTPUT_FILE_SPECIAL_PLUS"
# Ajoute l'en-tête au fichier spécial
echo "> [!info]- Icons" > "$OUTPUT_FILE_SPECIAL"
echo "> [!info]- Icons" > "$OUTPUT_FILE_SPECIAL_PLUS"
# Boucle à travers tous les fichiers SVG dans le répertoire actuel
for f in *.svg; do
echo "$f" >> "$OUTPUT_FILE_SIMPLE"
# Enlève l'extension .svg pour le fichier spécial
filename="${f%.svg}"
# Crée le lien et affiche l'image
icon_url="https://lucide.dev/icons/$filename"
echo "> - [$filename]($icon_url)" >> "$OUTPUT_FILE_SPECIAL"
echo "> - [$filename]($icon_url)" >> "$OUTPUT_FILE_SPECIAL_PLUS"
done
# Ajoute le contenu supplémentaire au fichier spécial plus
cat <<EOF >> "$OUTPUT_FILE_SPECIAL_PLUS"
\`\`\`dataviewjs
const icons = dv.current().file.lists.map((l) => l.text);
await dv.table(
["Icon", "Name"],
icons.map((l) => ["", l])
);
dv.container.querySelectorAll("tbody tr").forEach((tr, index) => {
const td = tr.querySelector("td");
obsidian.setIcon(td, icons[index], 100);
});
\`\`\`
EOF
echo "La liste des fichiers SVG a été enregistrée dans $OUTPUT_FILE_SIMPLE, $OUTPUT_FILE_SPECIAL et $OUTPUT_FILE_SPECIAL_PLUS."
&& pour windows :
@echo off
setlocal enabledelayedexpansion
REM Nom des fichiers de sortie
set OUTPUT_FILE_SIMPLE=liste_fichiers_svg.txt
set OUTPUT_FILE_SPECIAL=liste_fichiers_svg_special.txt
set OUTPUT_FILE_SPECIAL_PLUS=icons_obsidian.md
REM Supprime les fichiers de sortie s'ils existent déjà
if exist %OUTPUT_FILE_SIMPLE% del %OUTPUT_FILE_SIMPLE%
if exist %OUTPUT_FILE_SPECIAL% del %OUTPUT_FILE_SPECIAL%
if exist %OUTPUT_FILE_SPECIAL_PLUS% del %OUTPUT_FILE_SPECIAL_PLUS%
REM Ajoute l'en-tête au fichier spécial
echo ^> [!info]- Icons > %OUTPUT_FILE_SPECIAL%
echo ^> [!info]- Icons > %OUTPUT_FILE_SPECIAL_PLUS%
REM Boucle à travers tous les fichiers SVG dans le répertoire actuel
for %%f in (*.svg) do (
echo %%f >> %OUTPUT_FILE_SIMPLE%
REM Enlève l'extension .svg pour le fichier spécial
set "filename=%%~nf"
echo ^> - !filename! >> %OUTPUT_FILE_SPECIAL%
echo ^> - !filename! >> %OUTPUT_FILE_SPECIAL_PLUS%
)
REM Ajoute le contenu supplémentaire au fichier spécial plus
(
echo.
echo ^^^```dataviewjs
echo const icons = dv.current().file.lists.map((l) ^> l.text^);
echo await dv.table(
echo ^^^[^^^"Icon^^^", ^^^"Name^^^"],
echo icons.map((l) ^> ^[^^^"^^^", l^^^]^)
echo ^);
echo dv.container.querySelectorAll("tbody tr").forEach((tr, index) ^> ^{
echo ^^^const td = tr.querySelector("td");
echo ^^^obsidian.setIcon(td, icons[index], 100);
echo ^^^}^);
echo ^^^```
) >> %OUTPUT_FILE_SPECIAL_PLUS%
echo La liste des fichiers SVG a été enregistrée dans %OUTPUT_FILE_SIMPLE%, %OUTPUT_FILE_SPECIAL% et %OUTPUT_FILE_SPECIAL_PLUS%.
endlocal
pause
[!info]- Icons
- a-arrow-down
- a-arrow-up
- accessibility
- activity
- airplay
- air-vent
- a-large-small
- alarm-clock-check
- alarm-clock-minus
- alarm-clock-off
- alarm-clock-plus
- alarm-clock
- alarm-smoke
- album
- align-center-horizontal
- align-center
- align-center-vertical
- align-end-horizontal
- align-end-vertical
- align-horizontal-distribute-center
- align-horizontal-distribute-end
- align-horizontal-distribute-start
- align-horizontal-justify-center
- align-horizontal-justify-end
- align-horizontal-justify-start
- align-horizontal-space-around
- align-horizontal-space-between
- align-justify
- align-left
- align-right
- align-start-horizontal
- align-start-vertical
- align-vertical-distribute-center
- align-vertical-distribute-end
- align-vertical-distribute-start
- align-vertical-justify-center
- align-vertical-justify-end
- align-vertical-justify-start
- align-vertical-space-around
- align-vertical-space-between
- ambulance
- ampersands
- ampersand
- amphora
- anchor
- angry
- annoyed
- antenna
- anvil
- aperture
- apple
- app-window-mac
- app-window
- archive-restore
- archive
- archive-x
- armchair
- arrow-big-down-dash
- arrow-big-down
- arrow-big-left-dash
- arrow-big-left
- arrow-big-right-dash
- arrow-big-right
- arrow-big-up-dash
- arrow-big-up
- arrow-down-0-1
- arrow-down-1-0
- arrow-down-a-z
- arrow-down-from-line
- arrow-down-left
- arrow-down-narrow-wide
- arrow-down-right
- arrow-down
- arrow-down-to-dot
- arrow-down-to-line
- arrow-down-up
- arrow-down-wide-narrow
- arrow-down-z-a
- arrow-left-from-line
- arrow-left-right
- arrow-left
- arrow-left-to-line
- arrow-right-from-line
- arrow-right-left
- arrow-right
- arrow-right-to-line
- arrows-up-from-line
- arrow-up-0-1
- arrow-up-1-0
- arrow-up-a-z
- arrow-up-down
- arrow-up-from-dot
- arrow-up-from-line
- arrow-up-left
- arrow-up-narrow-wide
- arrow-up-right
- arrow-up
- arrow-up-to-line
- arrow-up-wide-narrow
- arrow-up-z-a
- asterisk
- atom
- at-sign
- audio-lines
- audio-waveform
- award
- axe
- axis-3d
- baby
- backpack
- badge-alert
- badge-cent
- badge-check
- badge-dollar-sign
- badge-euro
- badge-help
- badge-indian-rupee
- badge-info
- badge-japanese-yen
- badge-minus
- badge-percent
- badge-plus
- badge-pound-sterling
- badge-russian-ruble
- badge
- badge-swiss-franc
- badge-x
- baggage-claim
- banana
- bandage
- banknote
- ban
- barcode
- baseline
- bath
- battery-charging
- battery-full
- battery-low
- battery-medium
- battery
- battery-warning
- beaker
- bean-off
- bean
- bed-double
- bed-single
- bed
- beef
- beer-off
- beer
- bell-dot
- bell-electric
- bell-minus
- bell-off
- bell-plus
- bell-ring
- bell
- between-horizontal-end
- between-horizontal-start
- between-vertical-end
- between-vertical-start
- biceps-flexed
- bike
- binary
- binoculars
- biohazard
- bird
- bitcoin
- blend
- blinds
- blocks
- bluetooth-connected
- bluetooth-off
- bluetooth-searching
- bluetooth
- bold
- bolt
- bomb
- bone
- book-a
- book-audio
- book-check
- book-copy
- book-dashed
- book-down
- book-headphones
- book-heart
- book-image
- book-key
- book-lock
- bookmark-check
- book-marked
- bookmark-minus
- bookmark-plus
- bookmark
- bookmark-x
- book-minus
- book-open-check
- book-open
- book-open-text
- book-plus
- book
- book-text
- book-type
- book-up-2
- book-up
- book-user
- book-x
- boom-box
- bot-message-square
- bot-off
- bot
- boxes
- box-select
- box
- braces
- brackets
- brain-circuit
- brain-cog
- brain
- brick-wall
- briefcase-business
- briefcase-conveyor-belt
- briefcase-medical
- briefcase
- bring-to-front
- brush
- bug-off
- bug-play
- bug
- building-2
- building
- bus-front
- bus
- cable-car
- cable
- cake-slice
- cake
- calculator
- calendar-arrow-down
- calendar-arrow-up
- calendar-check-2
- calendar-check
- calendar-clock
- calendar-cog
- calendar-days
- calendar-fold
- calendar-heart
- calendar-minus-2
- calendar-minus
- calendar-off
- calendar-plus-2
- calendar-plus
- calendar-range
- calendar-search
- calendar
- calendar-x-2
- calendar-x
- camera-off
- camera
- candy-cane
- candy-off
- candy
- cannabis
- captions-off
- captions
- caravan
- car-front
- carrot
- car
- car-taxi-front
- case-lower
- case-sensitive
- case-upper
- cassette-tape
- castle
- cast
- cat
- cctv
- chart-area
- chart-bar-big
- chart-bar-decreasing
- chart-bar-increasing
- chart-bar-stacked
- chart-bar
- chart-candlestick
- chart-column-big
- chart-column-decreasing
- chart-column-increasing
- chart-column-stacked
- chart-column
- chart-gantt
- chart-line
- chart-network
- chart-no-axes-column-decreasing
- chart-no-axes-column-increasing
- chart-no-axes-column
- chart-no-axes-combined
- chart-no-axes-gantt
- chart-pie
- chart-scatter
- chart-spline
- check-check
- check
- chef-hat
- cherry
- chevron-down
- chevron-first
- chevron-last
- chevron-left
- chevron-right
- chevrons-down
- chevrons-down-up
- chevrons-left-right-ellipsis
- chevrons-left-right
- chevrons-left
- chevrons-right-left
- chevrons-right
- chevrons-up-down
- chevrons-up
- chevron-up
- chrome
- church
- cigarette-off
- cigarette
- circle-alert
- circle-arrow-down
- circle-arrow-left
- circle-arrow-out-down-left
- circle-arrow-out-down-right
- circle-arrow-out-up-left
- circle-arrow-out-up-right
- circle-arrow-right
- circle-arrow-up
- circle-check-big
- circle-check
- circle-chevron-down
- circle-chevron-left
- circle-chevron-right
- circle-chevron-up
- circle-dashed
- circle-divide
- circle-dollar-sign
- circle-dot-dashed
- circle-dot
- circle-ellipsis
- circle-equal
- circle-fading-arrow-up
- circle-fading-plus
- circle-gauge
- circle-help
- circle-minus
- circle-off
- circle-parking-off
- circle-parking
- circle-pause
- circle-percent
- circle-play
- circle-plus
- circle-power
- circle-slash-2
- circle-slash
- circle-stop
- circle
- circle-user-round
- circle-user
- circle-x
- circuit-board
- citrus
- clapperboard
- clipboard-check
- clipboard-copy
- clipboard-list
- clipboard-minus
- clipboard-paste
- clipboard-pen-line
- clipboard-pen
- clipboard-plus
- clipboard
- clipboard-type
- clipboard-x
- clock-10
- clock-11
- clock-12
- clock-1
- clock-2
- clock-3
- clock-4
- clock-5
- clock-6
- clock-7
- clock-8
- clock-9
- clock-alert
- clock-arrow-down
- clock-arrow-up
- clock
- cloud-cog
- cloud-download
- cloud-drizzle
- cloud-fog
- cloud-hail
- cloud-lightning
- cloud-moon-rain
- cloud-moon
- cloud-off
- cloud-rain
- cloud-rain-wind
- cloud-snow
- cloud-sun-rain
- cloud-sun
- cloud
- cloud-upload
- cloudy
- clover
- club
- codepen
- codesandbox
- code
- code-xml
- coffee
- cog
- coins
- columns-2
- columns-3
- columns-4
- combine
- command
- compass
- component
- computer
- concierge-bell
- cone
- construction
- contact-round
- contact
- container
- contrast
- cookie
- cooking-pot
- copy-check
- copyleft
- copy-minus
- copy-plus
- copyright
- copy-slash
- copy
- copy-x
- corner-down-left
- corner-down-right
- corner-left-down
- corner-left-up
- corner-right-down
- corner-right-up
- corner-up-left
- corner-up-right
- cpu
- creative-commons
- credit-card
- croissant
- crop
- crosshair
- cross
- crown
- cuboid
- cup-soda
- currency
- cylinder
- dam
- database-backup
- database
- database-zap
- delete
- dessert
- diameter
- diamond-minus
- diamond-percent
- diamond-plus
- diamond
- dice-1
- dice-2
- dice-3
- dice-4
- dice-5
- dice-6
- dices
- diff
- disc-2
- disc-3
- disc-album
- disc
- divide
- dna-off
- dna
- dock
- dog
- dollar-sign
- donut
- door-closed
- door-open
- dot
- download
- drafting-compass
- drama
- dribbble
- drill
- droplets
- droplet
- drumstick
- drum
- dumbbell
- ear-off
- ear
- earth-lock
- earth
- eclipse
- egg-fried
- egg-off
- egg
- ellipsis
- ellipsis-vertical
- equal-not
- equal
- eraser
- ethernet-port
- euro
- expand
- external-link
- eye-off
- eye
- factory
- fan
- fast-forward
- feather
- fence
- ferris-wheel
- figma
- file-archive
- file-audio-2
- file-audio
- file-axis-3d
- file-badge-2
- file-badge
- file-box
- file-chart-column-increasing
- file-chart-column
- file-chart-line
- file-chart-pie
- file-check-2
- file-check
- file-clock
- file-code-2
- file-code
- file-cog
- file-diff
- file-digit
- file-down
- file-heart
- file-image
- file-input
- file-json-2
- file-json
- file-key-2
- file-key
- file-lock-2
- file-lock
- file-minus-2
- file-minus
- file-music
- file-output
- file-pen-line
- file-pen
- file-plus-2
- file-plus
- file-question
- file-scan
- file-search-2
- file-search
- file-sliders
- file-spreadsheet
- files
- file-stack
- file
- file-symlink
- file-terminal
- file-text
- file-type-2
- file-type
- file-up
- file-video-2
- file-video
- file-volume-2
- file-volume
- file-warning
- file-x-2
- file-x
- film
- filter
- filter-x
- fingerprint
- fire-extinguisher
- fish-off
- fish
- fish-symbol
- flag-off
- flag
- flag-triangle-left
- flag-triangle-right
- flame-kindling
- flame
- flashlight-off
- flashlight
- flask-conical-off
- flask-conical
- flask-round
- flip-horizontal-2
- flip-horizontal
- flip-vertical-2
- flip-vertical
- flower-2
- flower
- focus
- folder-archive
- folder-check
- folder-clock
- folder-closed
- folder-code
- folder-cog
- folder-dot
- folder-down
- folder-git-2
- folder-git
- folder-heart
- folder-input
- folder-kanban
- folder-key
- folder-lock
- folder-minus
- folder-open-dot
- folder-open
- folder-output
- folder-pen
- folder-plus
- folder-root
- folder-search-2
- folder-search
- folders
- folder
- folder-symlink
- folder-sync
- folder-tree
- folder-up
- folder-x
- fold-horizontal
- fold-vertical
- footprints
- forklift
- forward
- framer
- frame
- frown
- fuel
- fullscreen
- gallery-horizontal-end
- gallery-horizontal
- gallery-thumbnails
- gallery-vertical-end
- gallery-vertical
- gamepad-2
- gamepad
- gauge
- gavel
- gem
- ghost
- gift
- git-branch-plus
- git-branch
- git-commit-horizontal
- git-commit-vertical
- git-compare-arrows
- git-compare
- git-fork
- git-graph
- github
- gitlab
- git-merge
- git-pull-request-arrow
- git-pull-request-closed
- git-pull-request-create-arrow
- git-pull-request-create
- git-pull-request-draft
- git-pull-request
- glasses
- glass-water
- globe-lock
- globe
- goal
- grab
- graduation-cap
- grape
- grid-2x2-check
- grid-2x2-plus
- grid-2x2
- grid-2x2-x
- grid-3x3
- grip-horizontal
- grip
- grip-vertical
- group
- guitar
- hammer
- ham
- hand-coins
- hand-heart
- hand-helping
- hand-metal
- hand-platter
- handshake
- hand
- hard-drive-download
- hard-drive
- hard-drive-upload
- hard-hat
- hash
- haze
- hdmi-port
- heading-1
- heading-2
- heading-3
- heading-4
- heading-5
- heading-6
- heading
- headphone-off
- headphones
- headset
- heart-crack
- heart-handshake
- heart-off
- heart-pulse
- heart
- heater
- hexagon
- highlighter
- history
- hop-off
- hop
- hospital
- hotel
- hourglass
- house-plug
- house-plus
- house
- ice-cream-bowl
- ice-cream-cone
- id-card
- image-down
- image-minus
- image-off
- image-play
- image-plus
- images
- image
- image-up
- import
- inbox
- indent-decrease
- indent-increase
- indian-rupee
- infinity
- info
- inspection-panel
- italic
- iteration-ccw
- iteration-cw
- japanese-yen
- joystick
- kanban
- keyboard-music
- keyboard-off
- keyboard
- key-round
- key-square
- key
- lamp-ceiling
- lamp-desk
- lamp-floor
- lamp
- lamp-wall-down
- lamp-wall-up
- landmark
- land-plot
- languages
- laptop-minimal
- laptop
- lasso-select
- lasso
- laugh
- layers-2
- layers-3
- layers
- layout-dashboard
- layout-grid
- layout-list
- layout-panel-left
- layout-panel-top
- layout-template
- leaf
- leafy-green
- lectern
- letter-text
- library-big
- library
- life-buoy
- ligature
- lightbulb-off
- lightbulb
- link-2-off
- link-2
- link
- list-checks
- list-check
- list-collapse
- list-end
- list-filter
- list-minus
- list-music
- list-ordered
- list-plus
- list-restart
- list-start
- list
- list-todo
- list-tree
- list-video
- list-x
- loader-circle
- loader-pinwheel
- loader
- locate-fixed
- locate-off
- locate
- lock-keyhole-open
- lock-keyhole
- lock-open
- lock
- log-in
- log-out
- logs
- lollipop
- luggage
- magnet
- mailbox
- mail-check
- mail-minus
- mail-open
- mail-plus
- mail-question
- mail-search
- mails
- mail-warning
- mail-x
- map-pin-check-inside
- map-pin-check
- map-pin-house
- map-pin-minus-inside
- map-pin-minus
- map-pinned
- map-pin-off
- map-pin-plus-inside
- map-pin-plus
- map-pin
- map-pin-x-inside
- map-pin-x
- map
- martini
- maximize-2
- maximize
- medal
- megaphone-off
- megaphone
- meh
- memory-stick
- menu
- merge
- message-circle-code
- message-circle-dashed
- message-circle-heart
- message-circle-more
- message-circle-off
- message-circle-plus
- message-circle-question
- message-circle-reply
- message-circle
- message-circle-warning
- message-circle-x
- message-square-code
- message-square-dashed
- message-square-diff
- message-square-dot
- message-square-heart
- message-square-more
- message-square-off
- message-square-plus
- message-square-quote
- message-square-reply
- message-square-share
- message-square
- message-square-text
- message-square-warning
- message-square-x
- messages-square
- mic-off
- microchip
- microscope
- microwave
- mic
- mic-vocal
- milestone
- milk-off
- milk
- minimize-2
- minimize
- minus
- monitor-check
- monitor-cog
- monitor-dot
- monitor-down
- monitor-off
- monitor-pause
- monitor-play
- monitor-smartphone
- monitor-speaker
- monitor-stop
- monitor
- monitor-up
- monitor-x
- moon-star
- moon
- mountain-snow
- mountain
- mouse-off
- mouse-pointer-2
- mouse-pointer-ban
- mouse-pointer-click
- mouse-pointer
- mouse
- move-3d
- move-diagonal-2
- move-diagonal
- move-down-left
- move-down-right
- move-down
- move-horizontal
- move-left
- move-right
- move
- move-up-left
- move-up-right
- move-up
- move-vertical
- music-2
- music-3
- music-4
- music
- navigation-2-off
- navigation-2
- navigation-off
- navigation
- network
- newspaper
- nfc
- notebook-pen
- notebook
- notebook-tabs
- notebook-text
- notepad-text-dashed
- notepad-text
- nut-off
- nut
- octagon-alert
- octagon-minus
- octagon-pause
- octagon
- octagon-x
- omega
- option
- orbit
- origami
- package-2
- package-check
- package-minus
- package-open
- package-plus
- package-search
- package
- package-x
- paintbrush
- paintbrush-vertical
- paint-bucket
- paint-roller
- palette
- panel-bottom-close
- panel-bottom-dashed
- panel-bottom-open
- panel-bottom
- panel-left-close
- panel-left-dashed
- panel-left-open
- panel-left
- panel-right-close
- panel-right-dashed
- panel-right-open
- panel-right
- panels-left-bottom
- panels-right-bottom
- panels-top-left
- panel-top-close
- panel-top-dashed
- panel-top-open
- panel-top
- paperclip
- parentheses
- parking-meter
- party-popper
- pause
- paw-print
- pc-case
- pencil-line
- pencil-off
- pencil-ruler
- pencil
- pen-line
- pen-off
- pen
- pentagon
- pen-tool
- percent
- person-standing
- philippine-peso
- phone-call
- phone-forwarded
- phone-incoming
- phone-missed
- phone-off
- phone-outgoing
- phone
- piano
- pickaxe
- picture-in-picture-2
- picture-in-picture
- piggy-bank
- pilcrow-left
- pilcrow-right
- pilcrow
- pill-bottle
- pill
- pin-off
- pin
- pipette
- pi
- pizza
- plane-landing
- plane
- plane-takeoff
- play
- plug-2
- plug
- plug-zap
- plus
- pocket-knife
- podcast
- pointer-off
- pointer
- popcorn
- popsicle
- pound-sterling
- power-off
- power
- presentation
- printer-check
- printer
- projector
- proportions
- puzzle
- pyramid
- qr-code
- quote
- rabbit
- radar
- radiation
- radical
- radio-receiver
- radio
- radio-tower
- radius
- rail-symbol
- rainbow
- ratio
- rat
- receipt-cent
- receipt-euro
- receipt-indian-rupee
- receipt-japanese-yen
- receipt-pound-sterling
- receipt-russian-ruble
- receipt
- receipt-swiss-franc
- receipt-text
- rectangle-ellipsis
- rectangle-horizontal
- rectangle-vertical
- recycle
- redo-2
- redo-dot
- redo
- refresh-ccw-dot
- refresh-ccw
- refresh-cw-off
- refresh-cw
- refrigerator
- regex
- remove-formatting
- repeat-1
- repeat-2
- repeat
- replace-all
- replace
- reply-all
- reply
- rewind
- ribbon
- rocket
- rocking-chair
- roller-coaster
- rotate-3d
- rotate-ccw-square
- rotate-ccw
- rotate-cw-square
- rotate-cw
- route-off
- router
- route
- rows-2
- rows-3
- rows-4
- rss
- ruler
- russian-ruble
- sailboat
- salad
- sandwich
- satellite-dish
- satellite
- save-all
- save-off
- save
- scale-3d
- scale
- scaling
- scan-barcode
- scan-eye
- scan-face
- scan-line
- scan-qr-code
- scan-search
- scan
- scan-text
- school
- scissors-line-dashed
- scissors
- screen-share-off
- screen-share
- scroll
- scroll-text
- search-check
- search-code
- search-slash
- search
- search-x
- section
- send-horizontal
- send
- send-to-back
- separator-horizontal
- separator-vertical
- server-cog
- server-crash
- server-off
- server
- settings-2
- settings
- shapes
- share-2
- share
- sheet
- shell
- shield-alert
- shield-ban
- shield-check
- shield-ellipsis
- shield-half
- shield-minus
- shield-off
- shield-plus
- shield-question
- shield
- shield-x
- ship
- ship-wheel
- shirt
- shopping-bag
- shopping-basket
- shopping-cart
- shovel
- shower-head
- shrink
- shrub
- shuffle
- sigma
- signal-high
- signal-low
- signal-medium
- signal
- signal-zero
- signature
- signpost-big
- signpost
- siren
- skip-back
- skip-forward
- skull
- slack
- slash
- slice
- sliders-horizontal
- sliders-vertical
- smartphone-charging
- smartphone-nfc
- smartphone
- smile-plus
- smile
- snail
- snowflake
- sofa
- soup
- space
- spade
- sparkles
- sparkle
- speaker
- speech
- spell-check-2
- spell-check
- spline
- split
- spray-can
- sprout
- square-activity
- square-arrow-down-left
- square-arrow-down-right
- square-arrow-down
- square-arrow-left
- square-arrow-out-down-left
- square-arrow-out-down-right
- square-arrow-out-up-left
- square-arrow-out-up-right
- square-arrow-right
- square-arrow-up-left
- square-arrow-up-right
- square-arrow-up
- square-asterisk
- square-bottom-dashed-scissors
- square-chart-gantt
- square-check-big
- square-check
- square-chevron-down
- square-chevron-left
- square-chevron-right
- square-chevron-up
- square-code
- square-dashed-bottom-code
- square-dashed-bottom
- square-dashed-kanban
- square-dashed-mouse-pointer
- square-divide
- square-dot
- square-equal
- square-function
- square-kanban
- square-library
- square-menu
- square-minus
- square-mouse-pointer
- square-m
- square-parking-off
- square-parking
- square-pen
- square-percent
- square-pilcrow
- square-pi
- square-play
- square-plus
- square-power
- square-radical
- square-scissors
- square-sigma
- square-slash
- square-split-horizontal
- square-split-vertical
- square-square
- square-stack
- square
- square-terminal
- square-user-round
- square-user
- square-x
- squircle
- squirrel
- stamp
- star-half
- star-off
- star
- step-back
- step-forward
- stethoscope
- sticker
- sticky-note
- store
- stretch-horizontal
- stretch-vertical
- strikethrough
- subscript
- sun-dim
- sun-medium
- sun-moon
- sunrise
- sunset
- sun-snow
- sun
- superscript
- swatch-book
- swiss-franc
- switch-camera
- swords
- sword
- syringe
- table-2
- table-cells-merge
- table-cells-split
- table-columns-split
- table-of-contents
- table-properties
- table-rows-split
- table
- tablet-smartphone
- tablets
- tablet
- tags
- tag
- tally-1
- tally-2
- tally-3
- tally-4
- tally-5
- tangent
- target
- telescope
- tent
- tent-tree
- terminal
- test-tube-diagonal
- test-tubes
- test-tube
- text-cursor-input
- text-cursor
- text-quote
- text-search
- text-select
- text
- theater
- thermometer-snowflake
- thermometer-sun
- thermometer
- thumbs-down
- thumbs-up
- ticket-check
- ticket-minus
- ticket-percent
- ticket-plus
- ticket-slash
- tickets-plane
- tickets
- ticket
- ticket-x
- timer-off
- timer-reset
- timer
- toggle-left
- toggle-right
- tornado
- torus
- touchpad-off
- touchpad
- tower-control
- toy-brick
- tractor
- traffic-cone
- train-front
- train-front-tunnel
- train-track
- tram-front
- trash-2
- trash
- tree-deciduous
- tree-palm
- tree-pine
- trees
- trello
- trending-down
- trending-up-down
- trending-up
- triangle-alert
- triangle-right
- triangle
- trophy
- truck
- turtle
- tv-minimal-play
- tv-minimal
- tv
- twitch
- type-outline
- type
- umbrella-off
- umbrella
- underline
- undo-2
- undo-dot
- undo
- unfold-horizontal
- unfold-vertical
- ungroup
- university
- unlink-2
- unlink
- unplug
- upload
- usb
- user-check
- user-cog
- user-minus
- user-pen
- user-plus
- user-round-check
- user-round-cog
- user-round-minus
- user-round-pen
- user-round-plus
- user-round-search
- user-round
- user-round-x
- user-search
- users-round
- users
- user
- user-x
- utensils-crossed
- utensils
- utility-pole
- variable
- vault
- vegan
- venetian-mask
- vibrate-off
- vibrate
- video-off
- video
- videotape
- view
- voicemail
- volume-1
- volume-2
- volume-off
- volume
- volume-x
- vote
- wallet-cards
- wallet-minimal
- wallet
- wallpaper
- wand-sparkles
- wand
- warehouse
- washing-machine
- watch
- waves
- waypoints
- webcam
- webhook-off
- webhook
- weight
- wheat-off
- wheat
- whole-word
- wifi-high
- wifi-low
- wifi-off
- wifi
- wifi-zero
- wind
- wine-off
- wine
- workflow
- worm
- wrap-text
- wrench
- x
- youtube
- zap-off
- zap
- zoom-in
- zoom-out
En vous remerciant de votre visite, n'hésitez pas à me
contacter pour toute demande de renseignements, devis ou
proposition de collaboration. Je me ferai un plaisir de
vous répondre dans les plus brefs délais.
Vous avez aimé cet article ? N'hésitez pas à le partager !