Skip to content

Commit 2e2924d

Browse files
authored
Merge pull request #214 from citizennet/AS-2079/add-ad-set-campaign-icons
AS-2079 Add Ad Set and Campaign Icons
2 parents 9d668ce + df52a59 commit 2e2924d

22 files changed

+72
-13
lines changed

css/src/icons.css

Lines changed: 8 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

css/svg/12-util-adset.svg

Lines changed: 10 additions & 0 deletions
Loading

css/svg/13-util-campaign.svg

Lines changed: 11 additions & 0 deletions
Loading

dist/cn-tailwind.css

Lines changed: 13 additions & 3 deletions
Large diffs are not rendered by default.

dist/cn-tailwind.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cn-tailwind.scoped.css

Lines changed: 13 additions & 3 deletions
Large diffs are not rendered by default.

dist/cn-tailwind.scoped.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "purescript-ocelot",
3-
"version": "0.33.0",
3+
"version": "0.33.1",
44
"private": true,
55
"scripts": {
66
"build-all": "make build",

src/Blocks/Icon.purs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ icon className iprops =
3232
[]
3333
]
3434

35+
adSet :: p i. Array (HH.IProp HTMLspan i) -> HH.HTML p i
36+
adSet = icon "icon-adset"
37+
38+
adSet_ :: p i. HH.HTML p i
39+
adSet_ = adSet []
40+
3541
add :: p i. Array (HH.IProp HTMLspan i) -> HH.HTML p i
3642
add = icon "icon-add"
3743

@@ -74,6 +80,12 @@ back = icon "icon-back"
7480
back_ :: p i. HH.HTML p i
7581
back_ = back []
7682

83+
campaign :: p i. Array (HH.IProp HTMLspan i) -> HH.HTML p i
84+
campaign = icon "icon-campaign"
85+
86+
campaign_ :: p i. HH.HTML p i
87+
campaign_ = campaign []
88+
7789
caratDown :: p i. Array (HH.IProp HTMLspan i) -> HH.HTML p i
7890
caratDown = icon "icon-carat-down"
7991

ui-guide/Components/Icons.purs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ component =
115115
, Tuple "Navigate" Icon.navigate_
116116
, Tuple "Data Sources" Icon.dataSources_
117117
, Tuple "Demographics" Icon.demographics_
118+
, Tuple "Ad Set" Icon.adSet_
119+
, Tuple "Campaign" Icon.campaign_
118120
]
119121
)
120122
]

0 commit comments

Comments
 (0)