www.icons Published by onesixx on 24-08-27 24-08-27
"""
This module contains the icons used in the app.
"""
from shiny import ui
from faicons import icon_svg
# https://icons .getbootstrap .com/icons/ question-circle-fill /
triangle_fill = ui.HTML(
'< svg xmlns="http://www .w3 .org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-triangle-fill " viewBox="0 0 16 16" > < path fill-rule ="evenodd" d="M7 .022 1 .566a1.13 1 .13 0 0 1 1 .96 0l6 .857 11 .667c.457.778-.092 1 .767-.98 1 .767H1.144c-.889 0-1 .437-.99-.98-1 .767z"/ > </ svg> '
)
square_fill = ui.HTML(
'< svg xmlns="http://www .w3 .org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-square-fill " viewBox="0 0 16 16" > < path d="M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2z"/ > </ svg> '
)
x_lg = ui.HTML(
'< svg xmlns="http://www .w3 .org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-x-lg " viewBox="0 0 16 16" > < path d="M2 .146 2 .854a.5.5 0 1 1 .708- .708L8 7 .293l5.146-5.147a.5.5 0 0 1 .708 .708L8.707 8l5 .147 5 .146a.5.5 0 0 1- .708.708L8 8 .707l-5.146 5 .147a.5.5 0 0 1- .708-.708L7.293 8z"/ > </ svg> '
)
info_fill = ui.HTML(
'< svg xmlns="http://www .w3 .org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-info-circle-fill " viewBox="0 0 16 16" > < path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m .93-9.412-1 4 .705c-.07.34.029.533.304.533.194 0 .487- .07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1 .002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2 .29-.287zM8 5 .5a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/ > </ svg> '
)
# https://fontawesome.com/search
question_circle = icon_svg(" circle-question ")