feat: massive refactor

This commit is contained in:
Nick 2024-12-15 02:31:26 -06:00
parent c619757eff
commit fc7b85afc1
214 changed files with 4764 additions and 4716 deletions

View file

@ -2,10 +2,18 @@ module Config.Style.Icons.Icons exposing (..)
import Config.Helpers.Viewport exposing (Msg)
import Config.Style.Icons.Helpers as HeSvg exposing (buildSvg)
import Config.Style.Icons.Types as SvgTypes exposing (..)
import Config.Style.Icons.Types as SvgTypes
exposing
( InnerPart
, OuterPart
)
import Element as E exposing (..)
import Html exposing (Html)
import Svg exposing (..)
import Svg
exposing
( path
, svg
)
import Svg.Attributes as SvgAttr
@ -855,10 +863,11 @@ circleDots inner =
, SvgAttr.fill "currentColor"
]
, svg =
[ path
[ SvgAttr.d "M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"
[ path
[ SvgAttr.d "M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"
]
[]
]
[] ]
}