mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-27 19:42:11 +10:00
Add icon examples to the Styleguide
This commit is contained in:
parent
4494758e88
commit
e39359946a
10 changed files with 81 additions and 0 deletions
7
src/components/IconBannedUser/IconBannedUser.example.js
Normal file
7
src/components/IconBannedUser/IconBannedUser.example.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import IconBannedUser from './IconBannedUser';
|
||||
|
||||
export const Icon = {
|
||||
component: IconBannedUser,
|
||||
props: {},
|
||||
group: 'icons',
|
||||
};
|
||||
7
src/components/IconClose/IconClose.example.js
Normal file
7
src/components/IconClose/IconClose.example.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import IconClose from './IconClose';
|
||||
|
||||
export const Icon = {
|
||||
component: IconClose,
|
||||
props: {},
|
||||
group: 'icons',
|
||||
};
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
import IconEmailAttention from './IconEmailAttention';
|
||||
|
||||
export const Icon = {
|
||||
component: IconEmailAttention,
|
||||
props: {},
|
||||
group: 'icons',
|
||||
};
|
||||
7
src/components/IconEmailSent/IconEmailSent.example.js
Normal file
7
src/components/IconEmailSent/IconEmailSent.example.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import IconEmailSent from './IconEmailSent';
|
||||
|
||||
export const Icon = {
|
||||
component: IconEmailSent,
|
||||
props: {},
|
||||
group: 'icons',
|
||||
};
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
import IconEmailSuccess from './IconEmailSuccess';
|
||||
|
||||
export const Icon = {
|
||||
component: IconEmailSuccess,
|
||||
props: {},
|
||||
group: 'icons',
|
||||
};
|
||||
7
src/components/IconKeys/IconKeys.example.js
Normal file
7
src/components/IconKeys/IconKeys.example.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import IconKeys from './IconKeys';
|
||||
|
||||
export const Icon = {
|
||||
component: IconKeys,
|
||||
props: {},
|
||||
group: 'icons',
|
||||
};
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
import IconKeysSuccess from './IconKeysSuccess';
|
||||
|
||||
export const Icon = {
|
||||
component: IconKeysSuccess,
|
||||
props: {},
|
||||
group: 'icons',
|
||||
};
|
||||
7
src/components/IconSearch/IconSearch.example.js
Normal file
7
src/components/IconSearch/IconSearch.example.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import IconSearch from './IconSearch';
|
||||
|
||||
export const Icon = {
|
||||
component: IconSearch,
|
||||
props: {},
|
||||
group: 'icons',
|
||||
};
|
||||
7
src/components/IconSpinner/IconSpinner.example.js
Normal file
7
src/components/IconSpinner/IconSpinner.example.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import IconSpinner from './IconSpinner';
|
||||
|
||||
export const Icon = {
|
||||
component: IconSpinner,
|
||||
props: {},
|
||||
group: 'icons',
|
||||
};
|
||||
|
|
@ -9,6 +9,15 @@ import * as DateInputField from './components/DateInputField/DateInputField.exam
|
|||
import * as DateRangeInputField from './components/DateRangeInputField/DateRangeInputField.example';
|
||||
import * as EditListingWizard from './components/EditListingWizard/EditListingWizard.example';
|
||||
import * as ExpandingTextarea from './components/ExpandingTextarea/ExpandingTextarea.example';
|
||||
import * as IconBannedUser from './components/IconBannedUser/IconBannedUser.example';
|
||||
import * as IconClose from './components/IconClose/IconClose.example';
|
||||
import * as IconEmailAttention from './components/IconEmailAttention/IconEmailAttention.example';
|
||||
import * as IconEmailSent from './components/IconEmailSent/IconEmailSent.example';
|
||||
import * as IconEmailSuccess from './components/IconEmailSuccess/IconEmailSuccess.example';
|
||||
import * as IconKeys from './components/IconKeys/IconKeys.example';
|
||||
import * as IconKeysSuccess from './components/IconKeysSuccess/IconKeysSuccess.example';
|
||||
import * as IconSearch from './components/IconSearch/IconSearch.example';
|
||||
import * as IconSpinner from './components/IconSpinner/IconSpinner.example';
|
||||
import * as ImageCarousel from './components/ImageCarousel/ImageCarousel.example';
|
||||
import * as ListingCard from './components/ListingCard/ListingCard.example';
|
||||
import * as LocationAutocompleteInput
|
||||
|
|
@ -69,6 +78,15 @@ export {
|
|||
EditListingPricingForm,
|
||||
EditListingWizard,
|
||||
ExpandingTextarea,
|
||||
IconBannedUser,
|
||||
IconClose,
|
||||
IconEmailAttention,
|
||||
IconEmailSent,
|
||||
IconEmailSuccess,
|
||||
IconKeys,
|
||||
IconKeysSuccess,
|
||||
IconSearch,
|
||||
IconSpinner,
|
||||
ImageCarousel,
|
||||
ListingCard,
|
||||
LocationAutocompleteInput,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue