Skip to content

Commit

Permalink
chore: move outdated icons
Browse files Browse the repository at this point in the history
  • Loading branch information
y047aka committed Sep 24, 2024
1 parent 5c0b505 commit 645059d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Icon.Brands exposing (fromString)
module Icon_Outdated.Brands exposing (fromString)

import FontAwesome.Brands exposing (..)
import FontAwesome.Icon exposing (Icon)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Icon.Regular exposing (fromString)
module Icon_Outdated.Regular exposing (fromString)

import FontAwesome.Icon exposing (Icon)
import FontAwesome.Regular exposing (..)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Icon.Solid exposing (fromString)
module Icon_Outdated.Solid exposing (fromString)

import FontAwesome.Icon exposing (Icon)
import FontAwesome.Solid exposing (..)
Expand Down
2 changes: 1 addition & 1 deletion package/src/UI/Accordion.elm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Css.Typography as Typography exposing (setFontSize, typography)
import Data.Theme exposing (Theme)
import Html.Styled as Html exposing (Attribute, Html)
import Html.Styled.Attributes as Attributes exposing (css, for, href, name, type_, value)
import UI.Icon as Icon
import UI.Icon_Outdated as Icon


type ToggleMethod
Expand Down
2 changes: 1 addition & 1 deletion package/src/UI/CircleStep.elm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Css.Palette.Extra as Palette
import Css.Typography as Typography exposing (setFontSize, setFontWeight, setLineHeight, typography)
import Html.Styled as Html exposing (Attribute, Html, text)
import Html.Styled.Attributes exposing (css)
import UI.Icon as Icon
import UI.Icon_Outdated as Icon


type StepPosition
Expand Down
8 changes: 4 additions & 4 deletions package/src/UI/Icon.elm → package/src/UI/Icon_Outdated.elm
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module UI.Icon exposing (icon)
module UI.Icon_Outdated exposing (icon)

import Css exposing (..)
import FontAwesome.Icon
import Html.Styled as Html exposing (Attribute, Html, fromUnstyled)
import Icon.Brands as Brands
import Icon.Regular as Regular
import Icon.Solid as Solid
import Icon_Outdated.Brands as Brands
import Icon_Outdated.Regular as Regular
import Icon_Outdated.Solid as Solid


icon : List (Attribute msg) -> String -> Html msg
Expand Down
2 changes: 1 addition & 1 deletion package/src/UI/Step.elm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import Css.Palette as Palette exposing (paletteWithBorder, setBackground, setBor
import Css.Typography as Typography exposing (setFontSize, setFontWeight, setLineHeight, typography)
import Html.Styled as Html exposing (Attribute, Html, text)
import Html.Styled.Attributes exposing (css)
import UI.Icon as Icon
import UI.Icon_Outdated as Icon


type State
Expand Down

0 comments on commit 645059d

Please sign in to comment.