Skip to content

Commit

Permalink
feat: add icons for new components
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenreijs committed Apr 23, 2020
1 parent 3a9bc15 commit 40b18e1
Show file tree
Hide file tree
Showing 11 changed files with 65 additions and 147 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "UNLICENSED",
"private": false,
"devDependencies": {
"@betty-blocks/cli": "^23.0.0",
"@betty-blocks/cli": "^23.1.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^3.3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/prefabs/card.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(() => ({
name: 'Card',
icon: 'ContainerIcon',
icon: 'CardIcon',
category: 'CARDS',
structure: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/prefabs/cardActions.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(() => ({
name: 'CardActions',
icon: 'ButtonGroupIcon',
icon: 'CardActionsIcon',
category: 'CARDS',
structure: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/prefabs/cardContent.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(() => ({
name: 'CardContent',
icon: 'ContainerIcon',
icon: 'CardContentIcon',
category: 'CARDS',
structure: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/prefabs/cardHeader.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(() => ({
name: 'CardHeader',
icon: 'ContainerIcon',
icon: 'CardHeaderIcon',
category: 'CARDS',
structure: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/prefabs/cardMedia.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(() => ({
name: 'CardMedia',
icon: 'ImageIcon',
icon: 'CardMediaIcon',
category: 'CARDS',
structure: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/prefabs/chip.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(() => ({
name: 'Chip',
icon: 'ContainerIcon',
icon: 'ChipIcon',
category: 'CONTENT',
structure: [
{
Expand Down
4 changes: 2 additions & 2 deletions src/prefabs/paper.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(() => ({
name: 'Paper',
icon: 'ContainerIcon',
category: 'CARDS',
icon: 'PaperIcon',
category: 'LAYOUT',
structure: [
{
name: 'Paper',
Expand Down
2 changes: 1 addition & 1 deletion src/prefabs/tab.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(() => ({
name: 'Tab',
icon: 'TabGroupIcon',
icon: 'TabIcon',
category: 'CONTENT',
structure: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/prefabs/tabs.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(() => ({
name: 'Tabs',
icon: 'TabGroupIcon',
icon: 'TabsIcon',
category: 'CONTENT',
structure: [
{
Expand Down
Loading

0 comments on commit 40b18e1

Please sign in to comment.