@sellout/ui 0.0.57 → 0.0.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/Colors.js +26 -0
- package/build/_virtual/_tslib.js +51 -0
- package/build/components/Button.d.ts +20 -6
- package/build/components/Button.js +210 -0
- package/build/components/CodeInput.d.ts +8 -0
- package/build/components/CodeInput.js +78 -0
- package/build/components/Counter.js +28 -0
- package/build/components/Dropdown.d.ts +24 -0
- package/build/components/Dropdown.js +49 -0
- package/build/components/Flex.d.ts +12 -0
- package/build/components/Flex.js +12 -0
- package/build/components/Icon.d.ts +49 -3
- package/build/components/Icon.js +39 -0
- package/build/components/Icons.d.ts +49 -3
- package/build/components/Icons.js +181 -0
- package/build/components/Input.d.ts +16 -1
- package/build/components/Input.js +177 -0
- package/build/components/InputOld.d.ts +23 -0
- package/build/components/InputOld.js +83 -0
- package/build/components/Label.d.ts +9 -0
- package/build/components/Label.js +22 -0
- package/build/components/Loader.js +37 -0
- package/build/components/MaxLength.d.ts +7 -0
- package/build/components/MaxLength.js +16 -0
- package/build/components/Motion.d.ts +30 -0
- package/build/components/Motion.js +39 -0
- package/build/components/PhoneNumberInput.d.ts +19 -0
- package/build/components/PhoneNumberInput.js +39 -0
- package/build/components/Product.js +54 -0
- package/build/components/TextButton.d.ts +15 -0
- package/build/components/TextButton.js +39 -0
- package/build/components/Tip.d.ts +7 -0
- package/build/components/Tip.js +18 -0
- package/build/components/UserImage.d.ts +13 -0
- package/build/components/UserImage.js +20 -0
- package/build/components/UserInfo.d.ts +12 -0
- package/build/components/UserInfo.js +38 -0
- package/build/components/ValidationError.d.ts +6 -0
- package/build/components/ValidationError.js +23 -0
- package/build/components/VerticalUserInfo.d.ts +12 -0
- package/build/index.d.ts +18 -126
- package/build/index.js +27 -453
- package/build/utils/ErrorUtil.d.ts +1 -0
- package/build/utils/ErrorUtil.js +18 -0
- package/build/utils/MediaQuery.d.ts +17 -0
- package/build/utils/MediaQuery.js +64 -0
- package/build/utils/Validation.d.ts +6 -0
- package/build/utils/Validation.js +53 -0
- package/build/utils/makeEventHandler.js +11 -0
- package/package.json +13 -5
- package/.storybook/config.js +0 -3
- package/.storybook/preview-head.html +0 -21
- package/.storybook/webpack.config.js +0 -19
- package/build/index.es.js +0 -443
- package/rollup.config.js +0 -20
- package/src/Colors.ts +0 -23
- package/src/assets/images/sellout-logo-long.svg +0 -11
- package/src/assets/images/sellout-logo-mono-white.svg +0 -4
- package/src/components/Button.tsx +0 -141
- package/src/components/Counter.tsx +0 -91
- package/src/components/Icon.tsx +0 -78
- package/src/components/Icons.ts +0 -251
- package/src/components/Input.tsx +0 -258
- package/src/components/Loader.tsx +0 -88
- package/src/components/Product.tsx +0 -156
- package/src/index.ts +0 -28
- package/src/stories/Button.stories.js +0 -30
- package/src/stories/Counter.stories.js +0 -28
- package/src/stories/Icon.stories.js +0 -25
- package/src/stories/Input.stories.js +0 -79
- package/src/stories/Loader.stories.js +0 -50
- package/src/stories/Product.stories.js +0 -67
- package/src/utils/makeEventHandler.ts +0 -8
- package/tsconfig.json +0 -24
- package/utils/generateIconLibrary.js +0 -49
- package/utils/icon-library.csv +0 -129
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import styled from 'styled-components';
|
|
3
|
-
import Loader, { LoaderSizes } from '../components/Loader';
|
|
4
|
-
import { Colors } from "../Colors";
|
|
5
|
-
|
|
6
|
-
const Container = styled.div`
|
|
7
|
-
position: absolute;
|
|
8
|
-
background-color: ${props => props.color || Colors.Orange};
|
|
9
|
-
height: 100%;
|
|
10
|
-
width: 100%;
|
|
11
|
-
display: flex;
|
|
12
|
-
align-items: center;
|
|
13
|
-
justify-content: center;
|
|
14
|
-
`;
|
|
15
|
-
|
|
16
|
-
export default {
|
|
17
|
-
title: 'Loader',
|
|
18
|
-
component: Loader,
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
export const VerySmall = () => (
|
|
22
|
-
<Container>
|
|
23
|
-
<Loader size={LoaderSizes.VerySmall} />
|
|
24
|
-
</Container>
|
|
25
|
-
);
|
|
26
|
-
|
|
27
|
-
export const Small = () => (
|
|
28
|
-
<Container>
|
|
29
|
-
<Loader size={LoaderSizes.Small} />
|
|
30
|
-
</Container>
|
|
31
|
-
);
|
|
32
|
-
|
|
33
|
-
export const Medium = () => (
|
|
34
|
-
<Container>
|
|
35
|
-
<Loader size={LoaderSizes.Medium} />
|
|
36
|
-
</Container>
|
|
37
|
-
);
|
|
38
|
-
|
|
39
|
-
export const Large = () => (
|
|
40
|
-
<Container>
|
|
41
|
-
<Loader size={LoaderSizes.Large} />
|
|
42
|
-
</Container>
|
|
43
|
-
);
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
export const Colored = () => (
|
|
47
|
-
<Container color={Colors.White}>
|
|
48
|
-
<Loader size={LoaderSizes.Medium} color={Colors.Orange}/>
|
|
49
|
-
</Container>
|
|
50
|
-
);
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import React, { useState } from 'react';
|
|
2
|
-
import styled from 'styled-components';
|
|
3
|
-
import Product from '../components/Product';
|
|
4
|
-
import { Colors } from '../Colors';
|
|
5
|
-
|
|
6
|
-
const Container = styled.div`
|
|
7
|
-
width: 370px;
|
|
8
|
-
padding: 20px;
|
|
9
|
-
background-color: ${Colors.Grey4};
|
|
10
|
-
`;
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
title: 'Product',
|
|
14
|
-
component: Product,
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
export const Default = () => {
|
|
18
|
-
const [value, setValue] = useState(0);
|
|
19
|
-
|
|
20
|
-
const product = {
|
|
21
|
-
title: 'General Admission',
|
|
22
|
-
price: 1000,
|
|
23
|
-
subtitle: 'Comes with a free drink upgrade',
|
|
24
|
-
description: 'Do consequat ut ad enim. Minim commodo in Lorem aliqua aliquip cupidatat voluptate. Fugiat et incididunt enim pariatur eiusmod. Ex id sit nisi mollit laborum id ad. Ut aliquip nulla laboris eu occaecat tempor voluptate Lorem fugiat veniam elit ut eu quis. Aliqua reprehenderit mollit magna et fugiat sit cupidatat aliqua cillum dolore veniam. Sint anim incididunt ea consequat cillum laborum eu. Aute ipsum consequat cupidatat enim dolore amet incididunt occaecat esse consectetur occaecat. Dolor est ad ullamco fugiat occaecat anim minim aliqua Lorem. Ad culpa ipsum in labore minim sunt laboris nulla laboris.'
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
return (
|
|
28
|
-
<Container>
|
|
29
|
-
<Product
|
|
30
|
-
title={product.title}
|
|
31
|
-
price={product.price}
|
|
32
|
-
subtitle={product.subtitle}
|
|
33
|
-
description={product.description}
|
|
34
|
-
value={value}
|
|
35
|
-
minValue={0}
|
|
36
|
-
maxValue={10}
|
|
37
|
-
onIncrement={() => setValue(value + 1)}
|
|
38
|
-
onDecrement={() => setValue(value - 1)}
|
|
39
|
-
/>
|
|
40
|
-
</Container>
|
|
41
|
-
);
|
|
42
|
-
};
|
|
43
|
-
|
|
44
|
-
export const Simple = () => {
|
|
45
|
-
const [value, setValue] = useState(0);
|
|
46
|
-
|
|
47
|
-
const product = {
|
|
48
|
-
title: 'General Admission',
|
|
49
|
-
price: 1000,
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
return (
|
|
53
|
-
<Container>
|
|
54
|
-
<Product
|
|
55
|
-
title={product.title}
|
|
56
|
-
price={product.price}
|
|
57
|
-
subtitle={product.subtitle}
|
|
58
|
-
description={product.description}
|
|
59
|
-
value={value}
|
|
60
|
-
minValue={0}
|
|
61
|
-
maxValue={10}
|
|
62
|
-
onIncrement={() => setValue(value + 1)}
|
|
63
|
-
onDecrement={() => setValue(value - 1)}
|
|
64
|
-
/>
|
|
65
|
-
</Container>
|
|
66
|
-
);
|
|
67
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export default function makeEventHandler(executeOnEvent: Function = () => {}) {
|
|
2
|
-
return function (eventHandler: Function) {
|
|
3
|
-
return function(event: React.FormEvent<HTMLInputElement>) {
|
|
4
|
-
executeOnEvent();
|
|
5
|
-
eventHandler(event.currentTarget.value as string);
|
|
6
|
-
};
|
|
7
|
-
}
|
|
8
|
-
}
|
package/tsconfig.json
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"outDir": "build",
|
|
4
|
-
"module": "esnext",
|
|
5
|
-
"target": "es5",
|
|
6
|
-
"lib": ["es6", "dom", "es2016", "es2017"],
|
|
7
|
-
"sourceMap": true,
|
|
8
|
-
"allowJs": false,
|
|
9
|
-
"jsx": "react",
|
|
10
|
-
"declaration": true,
|
|
11
|
-
"moduleResolution": "node",
|
|
12
|
-
"forceConsistentCasingInFileNames": true,
|
|
13
|
-
"noImplicitReturns": true,
|
|
14
|
-
"noImplicitThis": true,
|
|
15
|
-
"noImplicitAny": true,
|
|
16
|
-
"strictNullChecks": true,
|
|
17
|
-
"suppressImplicitAnyIndexErrors": true,
|
|
18
|
-
"noUnusedLocals": true,
|
|
19
|
-
"noUnusedParameters": true,
|
|
20
|
-
"esModuleInterop": true
|
|
21
|
-
},
|
|
22
|
-
"include": ["src"],
|
|
23
|
-
"exclude": ["node_modules", "build"]
|
|
24
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
const fs = require('fs-extra');
|
|
2
|
-
const csv = require('csvtojson');
|
|
3
|
-
|
|
4
|
-
const csvFilePath = process.argv[2]
|
|
5
|
-
const outputFile = process.argv[3];
|
|
6
|
-
|
|
7
|
-
if(!csvFilePath || !outputFile) {
|
|
8
|
-
console.log('Error: Please specify a CSV file and output file to generate icons.')
|
|
9
|
-
console.log('Usage: node generateIconLibrary.js path-to-icon-csv-file.csv path-to-output-file.ts');
|
|
10
|
-
process.exit(0);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
csv()
|
|
14
|
-
.fromFile(csvFilePath)
|
|
15
|
-
.then((jsonObj) => {
|
|
16
|
-
const icons = jsonObj.reduce((cur, icon) => {
|
|
17
|
-
let key = `${icon.Library}-${icon.Weight}`.toLowerCase();
|
|
18
|
-
if(key.charAt(key.length - 1) === '-') return cur;
|
|
19
|
-
key = `@fortawesome/${key}-svg-icons`;
|
|
20
|
-
|
|
21
|
-
icon = {
|
|
22
|
-
import: `import { ${icon['FA Name']} as ${icon.Name}} from '${key}';`,
|
|
23
|
-
export: `${icon.Name}`,
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
if(cur[key]) {
|
|
27
|
-
cur[key].push(icon);
|
|
28
|
-
} else {
|
|
29
|
-
cur[key] = [icon];
|
|
30
|
-
}
|
|
31
|
-
return cur;
|
|
32
|
-
}, {});
|
|
33
|
-
|
|
34
|
-
let importText = '';
|
|
35
|
-
let exportText = 'export const IconEnum = {';
|
|
36
|
-
|
|
37
|
-
Object.values(icons).flat().forEach((icon) => {
|
|
38
|
-
importText += icon.import + '\n';
|
|
39
|
-
exportText += '\n ' + icon.export + ',';
|
|
40
|
-
})
|
|
41
|
-
exportText += '\n};\n';
|
|
42
|
-
|
|
43
|
-
const finalText = `${importText}\n${exportText}`;
|
|
44
|
-
return finalText
|
|
45
|
-
})
|
|
46
|
-
.then(async (finalText) => await fs.writeFile(outputFile, finalText, 'utf8'))
|
|
47
|
-
.catch(e => console.error(e));
|
|
48
|
-
|
|
49
|
-
console.log('Finished');
|
package/utils/icon-library.csv
DELETED
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
Icon,Name,Library,Weight,FA Name
|
|
2
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cc-amex-brands.svg,Amex,Brands,,faCcAmex
|
|
3
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/analytics-light.svg,AnalyticsLight,Pro,Light,faAnalytics
|
|
4
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/analytics-solid.svg,AnalyticsSolid,Pro,Solid,faAnalytics
|
|
5
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/user-friends-regular.svg,AudienceRegular,Pro,Regular,faUserFriends
|
|
6
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/user-friends-solid.svg,AudienceSolid,Free,Solid,faUserFriends
|
|
7
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/arrow-left-solid.svg,BackArrow,Free,Solid,faArrowLeft
|
|
8
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/bell-light.svg,BellLight,Pro,Light,faBell
|
|
9
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/bold-regular.svg,BoldRegular,Pro,Regular,faBold
|
|
10
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cash-register-light.svg,BoxOfficeLight,Pro,Light,faCashRegister
|
|
11
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cash-register-solid.svg,BoxOfficeSolid,Free,Solid,faCashRegister
|
|
12
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/bullhorn-light.svg,BullHornLight,Pro,Light,faBullhorn
|
|
13
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/bullhorn-solid.svg,BullhornSolid,Free,Solid,faBullhorn
|
|
14
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calculator-regular.svg,CalculatorRegular,Pro,Regular,faCalculator
|
|
15
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calculator-solid.svg,CalculatorSolid,Free,Solid,faCalculator
|
|
16
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calendar-day-light.svg,CalendarDayLight,Pro,Light,faCalendarDay
|
|
17
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calendar-day-solid.svg,CalendarDaySolid,Free,Solid,faCalendarDay
|
|
18
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calendar-alt-light.svg,CalendarLight,Pro,Light,faCalendarAlt
|
|
19
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calendar-alt-regular.svg,CalendarRegular,Free,Regular,faCalendarAlt
|
|
20
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calendar-star-light.svg,CalendarStarLight,Pro,Light,faCalendarStar
|
|
21
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calendar-star-solid.svg,CalendarStarSolid,Pro,Solid,faCalendarStar
|
|
22
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/times-solid.svg,Cancel,Free,Solid,faTimes
|
|
23
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/times-circle-solid.svg,CancelCircle,Free,Solid,faTimesCircle
|
|
24
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/caret-down-solid.svg,CaretDown,Free,Solid,faCaretDown
|
|
25
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/money-bill-solid.svg,Cash,Free,Solid,faMoneyBill
|
|
26
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/check-circle-solid.svg,CheckCircle,Free,Solid,faCheckCircle
|
|
27
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/check-light.svg,CheckLight,Pro,Light,faCheck
|
|
28
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/check-regular.svg,CheckRegular,Pro,Regular,faCheck
|
|
29
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/glass-cheers-regular.svg,Cheers,Pro,Regular,faGlassCheers
|
|
30
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/clipboard-list-regular.svg,Clipboard,Pro,Regular,faClipboardList
|
|
31
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/clock-regular.svg,Clock,Free,Regular,faClock
|
|
32
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/copy-regular_(1).svg,CopyRegular,Free,Regular,faCopy
|
|
33
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/copy-solid.svg,CopySolid,Free,Solid,faCopy
|
|
34
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/credit-card-solid.svg,CreditCardBack,Free,Solid,faCreditCard
|
|
35
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/credit-card-front-solid.svg,CreditCardFront,Pro,Solid,faCreditCardFront
|
|
36
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/crown-regular.svg,CrownRegular,Pro,Regular,faCrown
|
|
37
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/crown-solid.svg,CrownSolid,Free,Solid,faCrown
|
|
38
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/i-cursor-solid.svg,Cursor,Free,Solid,faICursor
|
|
39
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/trash-regular.svg,DeleteRegular,Pro,Regular,faTrash
|
|
40
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/trash-solid.svg,DeleteSolid,Free,Solid,faTrash
|
|
41
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cc-discover-brands.svg,Discover,Brands,,faCcDiscover
|
|
42
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/dollar-sign-regular.svg,Dollar,Pro,Regular,faDollarSign
|
|
43
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/arrow-alt-down-regular.svg,DownArrow,Pro,Regular,faArrowAltDown
|
|
44
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/file-download-regular.svg,DownloadReport,Pro,Regular,faFileDownload
|
|
45
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/edit-regular.svg,Edit,Free,Regular,faEdit
|
|
46
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/code-regular_(1).svg,Embed,Pro,Regular,faCode
|
|
47
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/envelope-light.svg,EnvelopeLight,Pro,Light,faEnvelope
|
|
48
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/envelope-open-text-light.svg,EnvelopeOpenRegular,Pro,Light,faEnvelopeOpenText
|
|
49
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/envelope-solid.svg,EnvelopeSolid,Free,Solid,faEnvelope
|
|
50
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/file-export-light.svg,ExportLight,Pro,Light,faFileExport
|
|
51
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/eye-regular.svg,EyeRegular,Free,Regular,faEye
|
|
52
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/eye-slash-regular_(1).svg,EyeSlashRegular,Free,Regular,faEyeSlash
|
|
53
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/eye-solid.svg,EyeSolid,Free,Solid,faEye
|
|
54
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/usd-square-regular.svg,FeeRegular,Pro,Regular,faUsdSquare
|
|
55
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/usd-square-solid.svg,FeeSolid,Pro,Solid,faUsdSquare
|
|
56
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/filter-light.svg,FilterLight,Pro,Light,faFilter
|
|
57
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/filter-regular.svg,FilterRegular,Pro,Regular,faFilter
|
|
58
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/globe-americas-regular.svg,GlobeRegular,Pro,Regular,faGlobeAmericas
|
|
59
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/chart-line-regular.svg,GraphGrowth,Pro,Regular,faChartLine
|
|
60
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/life-ring-regular.svg,Help,Free,Regular,faLifeRing
|
|
61
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/question-circle-light.svg,HelpLight,Pro,Light,faQuestionCircle
|
|
62
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/question-circle-solid.svg,HelpSolid,Free,Solid,faQuestionCircle
|
|
63
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/home-light.svg,HomeLight,Pro,Light,faHome
|
|
64
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/home-solid.svg,HomeSolid,Free,Solid,faHome
|
|
65
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/info-circle-solid.svg,InfotipSolid,Free,Solid,faInfoCircle
|
|
66
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/italic-regular.svg,ItalicRegular,Pro,Regular,faItalic
|
|
67
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/key-regular.svg,KeyRegular,Pro,Regular,faKey
|
|
68
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/key-solid.svg,KeySolid,Pro,Solid,faKey
|
|
69
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/arrow-left-solid%201.svg,LeftArrowSolid,Free,Solid,faArrowLeft
|
|
70
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/chevron-left-regular.svg,LeftChevronRegular,Pro,Regular,faChevronLeft
|
|
71
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/chevron-left-solid.svg,LeftChevronSolid,Free,Solid,faChevronLeft
|
|
72
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/link-regular.svg,LinkRegular,Pro,Regular,faLink
|
|
73
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/lock-light.svg,Lock,Pro,Light,faLock
|
|
74
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/long-arrow-right-solid.svg,LongRightArrow,Pro,Solid,faLongArrowRight
|
|
75
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/map-marker-alt-light.svg,mapPinLight,Pro,Light,faMapMarkerAlt
|
|
76
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cc-mastercard-brands.svg,Mastercard,Brands,,faCcMastercard
|
|
77
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/bars-solid.svg,Menu,Free,Solid,faBars
|
|
78
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/microphone-alt-light.svg,MicrophoneLight,Pro,Light,faMicrophoneAlt
|
|
79
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/microphone-alt-solid.svg,MicrophoneSolid,Free,Solid,faMicrophoneAlt
|
|
80
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/minus-circle-light.svg,MinusCircleLight,Pro,Light,faMinusCircle
|
|
81
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/mobile-alt-light.svg,MobileLight,Pro,Light,faMobileAlt
|
|
82
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/mobile-alt-solid.svg,MobileSolid,Free,Solid,faMobileAlt
|
|
83
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/list-ol-regular.svg,OListRegular,Pro,Regular,faListOl
|
|
84
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/plus-solid.svg,Plus,Free,Solid,faPlus
|
|
85
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/plus-circle-solid.svg,PlusCircle,Free,Solid,faPlusCircle
|
|
86
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/plus-circle-light.svg,PlusCircleLight,Pro,Light,faPlusCircle
|
|
87
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/print-regular.svg,PrintRegular,Pro,Regular,faPrint
|
|
88
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/print-solid.svg,PrintSolid,Free,Solid,faPrint
|
|
89
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/receipt-light.svg,ReceiptLight,Pro,Light,faReceipt
|
|
90
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/receipt-solid.svg,ReceiptSolid,Free,Solid,faReceipt
|
|
91
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/file-chart-line-regular.svg,ReportRegular,Pro,Regular,faFileChartLine
|
|
92
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/file-chart-line-solid.svg,ReportSolid,Pro,Solid,faFileChartLine
|
|
93
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/chevron-circle-right-solid.svg,RightChevronCircle,Free,Solid,faChevronCircleRight
|
|
94
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/chevron-right-solid.svg,RightChevronSolid,Free,Solid,faChevronRight
|
|
95
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/sad-tear-regular.svg,SadTear,Free,Regular,faSadTear
|
|
96
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/search-light.svg,SearchLight,Pro,Light,faSearch
|
|
97
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/search-regular.svg,SearchRegular,Pro,Regular,faSearch
|
|
98
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/search-solid.svg,SearchSolid,Free,Solid,faSearch
|
|
99
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cog-regular.svg,Settings,Pro,Regular,faCog
|
|
100
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/sign-out-regular.svg,SignOut,Pro,Regular,faSignOut
|
|
101
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/sort-solid.svg,Sort,Free,Solid,faSort
|
|
102
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/sort-alt-solid.svg,SortBy,Pro,Solid,faSortAlt
|
|
103
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/sort-alt-light.svg,SortByLight,Pro,Light,faSortAlt
|
|
104
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/sync-regular.svg,SyncRegular,Pro,Regular,faSync
|
|
105
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/thumbs-down-solid.svg,ThumbsDownSolid,Free,Solid,faThumbsDown
|
|
106
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/thumbs-up-solid.svg,ThumbsUpSolid,Free,Solid,faThumbsUp
|
|
107
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/ticket-alt-regular.svg,TicketRegular,Pro,Regular,faTicketAlt
|
|
108
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/ticket-alt-solid.svg,TicketSolid,Free,Solid,faTicketAlt
|
|
109
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/list-ul-regular.svg,UListRegular,Pro,Regular,faListUl
|
|
110
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/underline-regular.svg,UnderlineRegular,Pro,Regular,faUnderline
|
|
111
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/unlock-light.svg,UnlockLight,Pro,Light,faUnlock
|
|
112
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/unlock-regular.svg,UnlockRegular,Pro,Regular,faUnlock
|
|
113
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/arrow-alt-up-regular.svg,UpArrow,Pro,Regular,faArrowAltUp
|
|
114
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/megaphone-regular.svg,Update,Pro,Regular,faMegaphone
|
|
115
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/arrow-alt-square-up-regular.svg,UpgradeRegular,Pro,Regular,faArrowAltSquareUp
|
|
116
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/arrow-alt-square-up-solid.svg,UpgradeSolid,Pro,Solid,faArrowAltSquareUp
|
|
117
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/upload-light.svg,UploadLight,Pro,Light,faUpload
|
|
118
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/user-circle-solid.svg,UserCircle,Free,Solid,faUserCircle
|
|
119
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/user-light.svg,UserLight,Pro,Light,faUser
|
|
120
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/user-regular.svg,UserRegular,Free,Regular,faUser
|
|
121
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/users-light.svg,UsersLight,Pro,Light,faUsers
|
|
122
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/user-solid.svg,UserSolid,Free,Solid,faUser
|
|
123
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/users-regular.svg,UsersRegular,Pro,Regular,faUsers
|
|
124
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/users-solid.svg,UsersSolid,Free,Solid,faUsers
|
|
125
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/landmark-light.svg,VenueLight,Pro,Light,faLandmark
|
|
126
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/landmark-solid.svg,VenueSolid,Free,Solid,faLandmark
|
|
127
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cc-visa-brands.svg,Visa,Brands,,faCcVisa
|
|
128
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/exclamation-triangle-solid.svg,Warning,Free,Solid,faExclamationTriangle
|
|
129
|
-
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/gift-regular.svg,GiftRegular,Pro,Regular,faGift
|