@loja-integrada/admin-components 0.17.0 → 0.18.0
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/dist/Forms/RadioButton/RadioButton.d.ts +24 -0
- package/dist/Forms/RadioButton/RadioButton.spec.d.ts +1 -0
- package/dist/Forms/RadioButton/RadioButton.stories.d.ts +6 -0
- package/dist/Forms/RadioButton/index.d.ts +1 -0
- package/dist/Forms/ToggleButton/ToggleButton.d.ts +24 -0
- package/dist/Forms/ToggleButton/ToggleButton.spec.d.ts +1 -0
- package/dist/Forms/ToggleButton/ToggleButton.stories.d.ts +7 -0
- package/dist/Forms/ToggleButton/index.d.ts +1 -0
- package/dist/Forms/index.d.ts +2 -0
- package/dist/Icons/icons-path/AngleDown.d.ts +2 -0
- package/dist/Icons/icons-path/Calculator.d.ts +2 -0
- package/dist/Icons/icons-path/Desktop.d.ts +2 -0
- package/dist/Icons/icons-path/Mobile.d.ts +2 -0
- package/dist/Icons/icons-path/Plus.d.ts +2 -0
- package/dist/Icons/icons-path/index.d.ts +5 -0
- package/dist/admin-components.cjs.development.js +153 -13
- package/dist/admin-components.cjs.development.js.map +1 -1
- package/dist/admin-components.cjs.production.min.js +1 -1
- package/dist/admin-components.cjs.production.min.js.map +1 -1
- package/dist/admin-components.esm.js +152 -14
- package/dist/admin-components.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Forms/RadioButton/RadioButton.spec.tsx +26 -0
- package/src/Forms/RadioButton/RadioButton.stories.tsx +40 -0
- package/src/Forms/RadioButton/RadioButton.tsx +80 -0
- package/src/Forms/RadioButton/index.tsx +1 -0
- package/src/Forms/ToggleButton/ToggleButton.spec.tsx +28 -0
- package/src/Forms/ToggleButton/ToggleButton.stories.tsx +51 -0
- package/src/Forms/ToggleButton/ToggleButton.tsx +95 -0
- package/src/Forms/ToggleButton/index.tsx +1 -0
- package/src/Forms/index.ts +2 -0
- package/src/Icons/Icon.stories.tsx +4 -4
- package/src/Icons/icons-path/AngleDown.tsx +9 -0
- package/src/Icons/icons-path/Bell.tsx +2 -2
- package/src/Icons/icons-path/Calculator.tsx +9 -0
- package/src/Icons/icons-path/Copy.tsx +1 -1
- package/src/Icons/icons-path/Desktop.tsx +9 -0
- package/src/Icons/icons-path/Image.tsx +1 -1
- package/src/Icons/icons-path/Mobile.tsx +9 -0
- package/src/Icons/icons-path/MoneyBill.tsx +1 -1
- package/src/Icons/icons-path/Move.tsx +1 -1
- package/src/Icons/icons-path/PaperList.tsx +2 -2
- package/src/Icons/icons-path/Pix.tsx +1 -2
- package/src/Icons/icons-path/Plus.tsx +9 -0
- package/src/Icons/icons-path/Sync.tsx +1 -1
- package/src/Icons/icons-path/index.ts +10 -0
package/package.json
CHANGED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import { composeStories } from '@storybook/testing-react'
|
|
3
|
+
import { mount } from '@cypress/react'
|
|
4
|
+
import * as stories from './RadioButton.stories'
|
|
5
|
+
|
|
6
|
+
const { Default, Grouped, Disabled } = composeStories(stories)
|
|
7
|
+
|
|
8
|
+
describe('Toggle tests', () => {
|
|
9
|
+
it('Default', () => {
|
|
10
|
+
mount(<Default />)
|
|
11
|
+
cy.get('input').should('not.be.checked')
|
|
12
|
+
cy.get('.radioLabel').contains('label')
|
|
13
|
+
})
|
|
14
|
+
|
|
15
|
+
it('Grouped', () => {
|
|
16
|
+
mount(<Grouped />)
|
|
17
|
+
cy.get('input[type=radio]:checked').should('have.length', 1)
|
|
18
|
+
cy.get('.radioLabel').contains('label')
|
|
19
|
+
})
|
|
20
|
+
|
|
21
|
+
it('Disabled', () => {
|
|
22
|
+
mount(<Disabled />)
|
|
23
|
+
cy.get('input[type=radio]').should('be.checked')
|
|
24
|
+
cy.get('.checkmark').should('have.class', 'pointer-events-none')
|
|
25
|
+
})
|
|
26
|
+
})
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import { Story, Meta } from '@storybook/react'
|
|
3
|
+
|
|
4
|
+
import { RadioButton, RadioButtonProps } from '.'
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
title: 'Forms/RadioButton',
|
|
8
|
+
component: RadioButton,
|
|
9
|
+
} as Meta
|
|
10
|
+
|
|
11
|
+
const Template: Story<RadioButtonProps> = (args) => <RadioButton {...args} />
|
|
12
|
+
|
|
13
|
+
const TemplateGrouped: Story<RadioButtonProps> = (args) => {
|
|
14
|
+
return (
|
|
15
|
+
<>
|
|
16
|
+
<RadioButton {...args} id='1' value={1} name='form' defaultChecked/>
|
|
17
|
+
<RadioButton {...args} id='2' value={2} name='form'/>
|
|
18
|
+
<RadioButton {...args} id='3' value={3} name='form'/>
|
|
19
|
+
</>
|
|
20
|
+
)
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export const Default = Template.bind({})
|
|
24
|
+
Default.args = {
|
|
25
|
+
label: 'label',
|
|
26
|
+
name: '',
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export const Grouped= TemplateGrouped.bind({})
|
|
30
|
+
Grouped.args = {
|
|
31
|
+
label: 'label',
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export const Disabled = Template.bind({})
|
|
35
|
+
Disabled.args = {
|
|
36
|
+
disabled: true,
|
|
37
|
+
label: 'label',
|
|
38
|
+
name: '',
|
|
39
|
+
defaultChecked: true,
|
|
40
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
const RadioButtonComponent = (
|
|
4
|
+
{
|
|
5
|
+
label,
|
|
6
|
+
id,
|
|
7
|
+
name,
|
|
8
|
+
value,
|
|
9
|
+
className = '',
|
|
10
|
+
onChange,
|
|
11
|
+
disabled = false,
|
|
12
|
+
...props
|
|
13
|
+
}: RadioButtonProps,
|
|
14
|
+
ref: React.ForwardedRef<HTMLInputElement>
|
|
15
|
+
): JSX.Element => {
|
|
16
|
+
const inputId = id || name
|
|
17
|
+
const toggleClasses = disabled
|
|
18
|
+
? `pointer-events-none border-card-stroke text-on-base-2 font-semibold peer-checked:bg-base-3`
|
|
19
|
+
: `peer-checked:bg-primary cursor-pointer`
|
|
20
|
+
|
|
21
|
+
const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
22
|
+
onChange && onChange(event)
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
return (
|
|
26
|
+
<div
|
|
27
|
+
className={`radioContainer relative inline-flex justify-center items-center text-f6 text-inverted-1 font-semibold mx-2`}
|
|
28
|
+
>
|
|
29
|
+
<label
|
|
30
|
+
className={`${className} relative inline-flex justify-center items-center border border-base-4 rounded-full w-4 h-4 mr-1 m-auto focus-within:border-focus focus-within:border-2
|
|
31
|
+
}`}
|
|
32
|
+
>
|
|
33
|
+
<input
|
|
34
|
+
ref={ref}
|
|
35
|
+
className={`absolute peer opacity-0 ${toggleClasses}`}
|
|
36
|
+
type="radio"
|
|
37
|
+
name={name}
|
|
38
|
+
value={value}
|
|
39
|
+
id={inputId}
|
|
40
|
+
onChange={handleChange}
|
|
41
|
+
{...props}
|
|
42
|
+
disabled={disabled}
|
|
43
|
+
/>
|
|
44
|
+
<span
|
|
45
|
+
className={`checkmark rounded-full w-2 h-2 ${toggleClasses} peer-checked:inline-block`}
|
|
46
|
+
></span>
|
|
47
|
+
</label>
|
|
48
|
+
<label htmlFor={inputId} className={`radioLabel ${toggleClasses}`}>
|
|
49
|
+
{label}
|
|
50
|
+
</label>
|
|
51
|
+
</div>
|
|
52
|
+
)
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
const RadioButtonWithForwardRef = React.forwardRef(RadioButtonComponent)
|
|
56
|
+
export const RadioButton = React.memo(RadioButtonWithForwardRef)
|
|
57
|
+
|
|
58
|
+
export interface RadioButtonProps
|
|
59
|
+
extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
60
|
+
/**
|
|
61
|
+
* Custom class name
|
|
62
|
+
* */
|
|
63
|
+
className?: string
|
|
64
|
+
/**
|
|
65
|
+
* Custom id
|
|
66
|
+
* */
|
|
67
|
+
id?: string
|
|
68
|
+
/**
|
|
69
|
+
* Custom name
|
|
70
|
+
* */
|
|
71
|
+
name?: string
|
|
72
|
+
/**
|
|
73
|
+
* Custom value
|
|
74
|
+
* */
|
|
75
|
+
value?: string | number
|
|
76
|
+
/**
|
|
77
|
+
* Text label of the radio button
|
|
78
|
+
* */
|
|
79
|
+
label?: string | React.ReactNode
|
|
80
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './RadioButton'
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import { composeStories } from '@storybook/testing-react'
|
|
3
|
+
import { mount } from '@cypress/react'
|
|
4
|
+
import * as stories from './ToggleButton.stories'
|
|
5
|
+
|
|
6
|
+
const { WithIcon, WithText, Disabled} = composeStories(stories)
|
|
7
|
+
|
|
8
|
+
describe('Toggle Button tests', () => {
|
|
9
|
+
it('With Icon', () => {
|
|
10
|
+
mount(<WithIcon />)
|
|
11
|
+
cy.get('input[type=radio]:checked').should('have.length', 1)
|
|
12
|
+
cy.get('ul').children().should('have.lengthOf.above', 0)
|
|
13
|
+
cy.get('svg').children().should('have.lengthOf.above', 0)
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
it('With Text', () => {
|
|
17
|
+
mount(<WithText />)
|
|
18
|
+
cy.get('input[type=radio]:checked').should('have.length', 1)
|
|
19
|
+
cy.get('ul').children().should('have.lengthOf.above', 0)
|
|
20
|
+
cy.get('.checkmark').children().should('have.lengthOf.above', 0).contains('span',`Text`)
|
|
21
|
+
})
|
|
22
|
+
|
|
23
|
+
it('Disabled', () => {
|
|
24
|
+
mount(<Disabled />)
|
|
25
|
+
cy.get('input[type=radio]:checked').should('have.length', 1)
|
|
26
|
+
cy.get('.checkmark').should('have.class', 'pointer-events-none')
|
|
27
|
+
})
|
|
28
|
+
})
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import { Story, Meta } from '@storybook/react'
|
|
3
|
+
import { Icon } from '../../Icons/Icon'
|
|
4
|
+
import { ToggleButton, ToggleButtonProps } from '.'
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
title: 'Forms/ToggleButton',
|
|
8
|
+
component: ToggleButton,
|
|
9
|
+
} as Meta
|
|
10
|
+
|
|
11
|
+
const Template: Story<ToggleButtonProps> = (args) => <ToggleButton {...args} />
|
|
12
|
+
|
|
13
|
+
export const WithIcon = Template.bind({})
|
|
14
|
+
WithIcon.args = {
|
|
15
|
+
disabled: false,
|
|
16
|
+
children: [
|
|
17
|
+
<Icon icon='desktop' key={1} />,
|
|
18
|
+
<Icon icon='mobile' key={2}/>,
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export const WithText = Template.bind({})
|
|
23
|
+
WithText.args = {
|
|
24
|
+
disabled: false,
|
|
25
|
+
children: [
|
|
26
|
+
<span key={1}>With Text</span>,
|
|
27
|
+
<span key={2}>With Text</span>,
|
|
28
|
+
<span key={3}>With Text</span>,
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export const Disabled = Template.bind({})
|
|
33
|
+
Disabled.args = {
|
|
34
|
+
disabled: true,
|
|
35
|
+
children: [
|
|
36
|
+
<span key={1}>Disabled</span>,
|
|
37
|
+
<span key={2}>Disabled</span>,
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export const WithOnChange = Template.bind({})
|
|
42
|
+
WithOnChange.args = {
|
|
43
|
+
disabled: false,
|
|
44
|
+
children: [
|
|
45
|
+
<Icon icon='desktop' key={1} />,
|
|
46
|
+
<Icon icon='mobile' key={2}/>,
|
|
47
|
+
],
|
|
48
|
+
onChange: (e) => {
|
|
49
|
+
console.log(e.target.name)
|
|
50
|
+
},
|
|
51
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
const ToggleButtonComponent = (
|
|
4
|
+
{
|
|
5
|
+
value,
|
|
6
|
+
className = '',
|
|
7
|
+
id,
|
|
8
|
+
children,
|
|
9
|
+
disabled,
|
|
10
|
+
defaultCheckedIndex = 0,
|
|
11
|
+
onChange,
|
|
12
|
+
...props
|
|
13
|
+
}: ToggleButtonProps,
|
|
14
|
+
ref: React.ForwardedRef<HTMLInputElement>
|
|
15
|
+
) => {
|
|
16
|
+
const toggleClasses = disabled
|
|
17
|
+
? `pointer-events-none bg-base-3 border-card-stroke text-on-base-2`
|
|
18
|
+
: `peer-checked:bg-primary peer-checked:border-primary peer-checked:text-base-1 text-primary`
|
|
19
|
+
|
|
20
|
+
const handleChange = (e: React.ChangeEvent<HTMLInputElement>): void => {
|
|
21
|
+
onChange && onChange(e)
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
const toggleItems = children.map((item, index) => {
|
|
25
|
+
const borderRadius =
|
|
26
|
+
index === 0
|
|
27
|
+
? 'rounded-l'
|
|
28
|
+
: children.length - 1 === index
|
|
29
|
+
? 'border-r rounded-r'
|
|
30
|
+
: ''
|
|
31
|
+
return (
|
|
32
|
+
<li
|
|
33
|
+
key={`toggle-btn-[${index}]`}
|
|
34
|
+
className="inline-flex justify-center items-center h-12"
|
|
35
|
+
>
|
|
36
|
+
<label className="relative inline-flex justify-center items-center h-12">
|
|
37
|
+
<input
|
|
38
|
+
ref={ref}
|
|
39
|
+
className="peer absolute top-0 bottom-0 left-0 right-0 cursor-pointer opacity-0 z-20"
|
|
40
|
+
type="radio"
|
|
41
|
+
id={id}
|
|
42
|
+
name="toggleButton"
|
|
43
|
+
value={value}
|
|
44
|
+
onChange={handleChange}
|
|
45
|
+
{...props}
|
|
46
|
+
defaultChecked={defaultCheckedIndex === index ? true : false}
|
|
47
|
+
disabled={disabled}
|
|
48
|
+
/>
|
|
49
|
+
<div
|
|
50
|
+
className={`${className} checkmark ${toggleClasses} inline-flex justify-center items-center ${borderRadius} py-4 px-6 border-y border-l h-12`}
|
|
51
|
+
>
|
|
52
|
+
{item}
|
|
53
|
+
</div>
|
|
54
|
+
</label>
|
|
55
|
+
</li>
|
|
56
|
+
)
|
|
57
|
+
})
|
|
58
|
+
|
|
59
|
+
return (
|
|
60
|
+
<div
|
|
61
|
+
className={`${className} inline-flex justify-center items-center h-12 ${toggleClasses}} rounded text-f6 tracking-4 font-semibold`}
|
|
62
|
+
>
|
|
63
|
+
<ul className="list-none inline-flex justify-center items-center h-12">
|
|
64
|
+
{toggleItems}
|
|
65
|
+
</ul>
|
|
66
|
+
</div>
|
|
67
|
+
)
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
const ToggleButtonWithForwardRef = React.forwardRef(ToggleButtonComponent)
|
|
71
|
+
export const ToggleButton = React.memo(ToggleButtonWithForwardRef)
|
|
72
|
+
|
|
73
|
+
export interface ToggleButtonProps
|
|
74
|
+
extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
75
|
+
/**
|
|
76
|
+
* Custom class name
|
|
77
|
+
* */
|
|
78
|
+
className?: string
|
|
79
|
+
/**
|
|
80
|
+
* Custom id
|
|
81
|
+
* */
|
|
82
|
+
id?: string
|
|
83
|
+
/**
|
|
84
|
+
* Custom value
|
|
85
|
+
* */
|
|
86
|
+
value?: string | number
|
|
87
|
+
/**
|
|
88
|
+
* Set icon or an text element to be a children
|
|
89
|
+
* */
|
|
90
|
+
children: React.ReactNode[]
|
|
91
|
+
/**
|
|
92
|
+
* Set element should be a checked
|
|
93
|
+
* */
|
|
94
|
+
defaultCheckedIndex: number
|
|
95
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ToggleButton'
|
package/src/Forms/index.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export * from './Input'
|
|
2
2
|
export * from './InputMask'
|
|
3
|
+
export * from './RadioButton'
|
|
3
4
|
export * from './InputCurrency'
|
|
4
5
|
export * from './InputLabel'
|
|
5
6
|
export * from './InputHelpText'
|
|
6
7
|
export * from './Select'
|
|
7
8
|
export * from './Toggle'
|
|
9
|
+
export * from './ToggleButton'
|
|
8
10
|
export * from './Dropdown'
|
|
9
11
|
export * from './Checkbox'
|
|
10
12
|
export * from './FloatingLabelInput'
|
|
@@ -14,16 +14,16 @@ Example.args = { icon: 'cog' }
|
|
|
14
14
|
export const IconsList = () => {
|
|
15
15
|
return (
|
|
16
16
|
<>
|
|
17
|
-
<div className="text-center">
|
|
17
|
+
<div className="text-center mb-6">
|
|
18
18
|
There are {Object.keys(icons).length} icons
|
|
19
19
|
</div>
|
|
20
20
|
<ul className="grid grid-cols-6 gap-4 list-none">
|
|
21
21
|
{(Object.keys(icons) as Array<keyof typeof icons>).map(key => (
|
|
22
|
-
<li key={key} className="flex items-center
|
|
23
|
-
<div className="shrink-0">
|
|
22
|
+
<li key={key} className="flex items-center min-w-0 group">
|
|
23
|
+
<div className="shrink-0 border border-transparent group-hover:border-card-stroke rounded flex">
|
|
24
24
|
<IconComponent icon={key} />
|
|
25
25
|
</div>
|
|
26
|
-
<div className="
|
|
26
|
+
<div className="ml-4 overflow-hidden text-ellipsis min-w-0 text-f6">{key}</div>
|
|
27
27
|
</li>
|
|
28
28
|
))}
|
|
29
29
|
</ul>
|
|
@@ -2,8 +2,8 @@ import React from 'react'
|
|
|
2
2
|
|
|
3
3
|
export const Bell = () => (
|
|
4
4
|
<path
|
|
5
|
-
clipRule="evenodd"
|
|
6
|
-
d="M14.6667 11.5556C14.6667 11.8 14.4667 12 14.2222 12H1.77778C1.53333 12 1.33333 11.8 1.33333 11.5556V11.2284C1.33333 11.0738 1.416 10.9271 1.54844 10.848L1.64533 10.7902C2.76533 10.1182 3.55644 9.05067 3.87289 7.78311L4.32533 5.97245C4.74667 4.288 6.25422 3.11111 7.99022 3.11111H8.00978C9.74578 3.11111 11.2533 4.288 11.6747 5.97245L12.1271 7.78311C12.4436 9.05067 13.2347 10.1182 14.3547 10.7902L14.4507 10.848C14.584 10.9271 14.6667 11.0738 14.6667 11.2284V11.5556ZM9.33333 13.3333C9.33333 14.0684 8.73511 14.6667 8 14.6667C7.26489 14.6667 6.66667 14.0684 6.66667 13.3333H9.33333ZM15.1369 9.704L15.0409 9.64711C14.232 9.16178 13.6489 8.37511 13.4204 7.46044L12.968 5.64889C12.4978 3.76711 11.0169 2.35289 9.192 1.91911C9.27911 1.74133 9.33333 1.54489 9.33333 1.33333C9.33333 0.596444 8.73689 0 8 0C7.26311 0 6.66667 0.596444 6.66667 1.33333C6.66667 1.54489 6.72089 1.74133 6.808 1.91911C4.98311 2.35289 3.50222 3.76711 3.032 5.64889L2.57956 7.46044C2.35111 8.37511 1.768 9.16178 0.959111 9.64711L0.863111 9.704C0.328 10.0258 0 10.6044 0 11.2284V11.5556C0 12.5369 0.796444 13.3333 1.77778 13.3333H5.33333C5.33333 14.8062 6.52711 16 8 16C9.47289 16 10.6667 14.8062 10.6667 13.3333H14.2222C15.2036 13.3333 16 12.5369 16 11.5556V11.2284C16 10.6044 15.672 10.0258 15.1369 9.704Z"
|
|
7
5
|
fillRule="evenodd"
|
|
6
|
+
d="M16.5 13c0 .275-.225.5-.5.5H2c-.275 0-.5-.225-.5-.5v-.368c0-.174.093-.339.242-.428l.109-.065c1.26-.756 2.15-1.957 2.506-3.383l.509-2.037C5.34 4.824 7.036 3.5 8.989 3.5h.022c1.953 0 3.649 1.324 4.123 3.219l.509 2.037c.356 1.426 1.246 2.627 2.506 3.383l.108.065c.15.089.243.254.243.428V13Zm-6 2c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5h3Zm6.529-4.083-.108-.064c-.91-.546-1.566-1.431-1.823-2.46l-.509-2.038c-.529-2.117-2.195-3.708-4.248-4.196.098-.2.159-.421.159-.659C10.5.671 9.829 0 9 0S7.5.671 7.5 1.5c0 .238.061.459.159.659-2.053.488-3.719 2.079-4.248 4.196l-.509 2.038c-.257 1.029-.913 1.914-1.823 2.46l-.108.064C.369 11.279 0 11.93 0 12.632V13c0 1.104.896 2 2 2h4c0 1.657 1.343 3 3 3s3-1.343 3-3h4c1.104 0 2-.896 2-2v-.368c0-.702-.369-1.353-.971-1.715Z"
|
|
7
|
+
clipRule="evenodd"
|
|
8
8
|
/>
|
|
9
9
|
)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
export const Calculator = () => (
|
|
4
|
+
<path
|
|
5
|
+
fillRule="evenodd"
|
|
6
|
+
d="M15.6248 14.6389V2.36111C15.6248 1.05683 14.5679 0 13.2636-1e-7L4.76365-5e-7C3.45937-5e-7 2.40253 1.05683 2.40253 2.36111V14.6389C2.40253 15.9422 3.45937 17 4.76365 17h8.49995c1.3043 0 2.3612-1.0578 2.3612-2.3611Zm-1.4167 0c0 .5204-.4231.9444-.9445.9444H4.76364c-.52133 0-.94444-.424-.94444-.9444V2.36111c0-.52133.42311-.94444.94445-.94444h8.49995c.5214 0 .9445.42311.9445.94444V14.6389ZM5.9442 2.71528c-.4564 0-.82639.36998-.82639.82639v1.41666c0 .4564.36999.82639.82639.82639h6.1389c.4564 0 .8264-.36998.8264-.82639V3.54167c0-.4564-.37-.82639-.8264-.82639H5.9442Zm.35417 1.88889v-.70834h5.43053v.70834H6.29837ZM5.9442 7.08333h.47222c.3912 0 .70834.31714.70834.70834v.47222c0 .3912-.31714.70833-.70834.70833H5.9442c-.3912 0-.70833-.31713-.70833-.70833v-.47222c0-.3912.31713-.70834.70833-.70834Zm.47222 2.83334H5.9442c-.3912 0-.70833.31713-.70833.70833v.4722c0 .3912.31713.7084.70833.7084h.47222c.39121 0 .70834-.3172.70834-.7084v-.4722c0-.3912-.31714-.70833-.70834-.70833Zm0 2.83333H5.9442c-.3912 0-.70833.3171-.70833.7083v.4723c0 .3912.31713.7083.70833.7083h.47222c.39121 0 .70834-.3171.70834-.7083v-.4723c0-.3912-.31713-.7083-.70834-.7083Zm2.83334-5.66667h-.47223c-.3912 0-.70833.31714-.70833.70834v.47222c0 .3912.31713.70833.70833.70833h.47223c.3912 0 .70833-.31713.70833-.70833v-.47222c0-.3912-.31713-.70834-.70833-.70834Zm0 2.83334h-.47223c-.3912 0-.70833.31713-.70833.70833v.4722c0 .3912.31713.7084.70833.7084h.47223c.3912 0 .70833-.3172.70833-.7084v-.4722c0-.3912-.31713-.70833-.70833-.70833Zm0 2.83333h-.47223c-.3912 0-.70833.3171-.70833.7083v.4723c0 .3912.31713.7083.70833.7083h.47223c.3912 0 .70833-.3171.70833-.7083v-.4723c0-.3912-.31713-.7083-.70833-.7083Zm2.83334-5.66667h-.4722c-.3912 0-.7084.31713-.7084.70834v.47222c0 .3912.3172.70833.7084.70833h.4722c.3912 0 .7083-.31713.7083-.70833v-.47222c0-.39121-.3171-.70834-.7083-.70834Zm0 2.83334h-.4722c-.3912 0-.7084.31713-.7084.70833v3.3056c0 .3912.3172.7083.7084.7083h.4722c.3912 0 .7083-.3171.7083-.7083V10.625c0-.3912-.3171-.70833-.7083-.70833Z"
|
|
7
|
+
clipRule="evenodd"
|
|
8
|
+
/>
|
|
9
|
+
)
|
|
@@ -3,7 +3,7 @@ import React from 'react'
|
|
|
3
3
|
export const Copy = () => (
|
|
4
4
|
<path
|
|
5
5
|
fillRule="evenodd"
|
|
6
|
-
d="
|
|
6
|
+
d="M11 15.5h1.5v.5c0 1.104-.896 2-2 2h-7c-1.104 0-2-.896-2-2V6c0-1.104.896-2 2-2H4v1.5h-.5c-.276 0-.5.225-.5.5v10c0 .275.224.5.5.5h7c.276 0 .5-.225.5-.5v-.5Zm3.5-3h-7c-.275 0-.5-.225-.5-.5V2c0-.275.225-.5.5-.5h3.9v2c0 1.158.942 2.1 2.1 2.1H15V12c0 .275-.225.5-.5.5Zm.354-8.775c.093.093.146.222.146.353V4.4h-1.5c-.496 0-.9-.404-.9-.9V1.535c.065.026.126.062.175.111l2.079 2.079Zm1.06-1.061L13.836.586C13.461.211 12.952 0 12.422 0H7.5c-1.104 0-2 .896-2 2v10c0 1.104.896 2 2 2h7c1.104 0 2-.896 2-2V4.078c0-.53-.211-1.039-.586-1.414Z"
|
|
7
7
|
clipRule="evenodd"
|
|
8
8
|
/>
|
|
9
9
|
)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
export const Desktop = () => (
|
|
4
|
+
<path
|
|
5
|
+
fillRule="evenodd"
|
|
6
|
+
d="M16.5 11c0 .275-.225.5-.5.5H2a.501.501 0 0 1-.5-.5V2c0-.275.225-.5.5-.5h14c.275 0 .5.225.5.5v9Zm-6.009 5.5H7.509l1.05-3.5h.882l1.05 3.5ZM16 0H2a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.991l-1.05 3.5H2.5V18h13v-1.5h-3.441l-1.05-3.5H16a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2Z"
|
|
7
|
+
clipRule="evenodd"
|
|
8
|
+
/>
|
|
9
|
+
)
|
|
@@ -3,7 +3,7 @@ import React from 'react'
|
|
|
3
3
|
export const Image = () => (
|
|
4
4
|
<path
|
|
5
5
|
fillRule="evenodd"
|
|
6
|
-
d="M10.5
|
|
6
|
+
d="M10.5 7c0-.828.671-1.5 1.5-1.5s1.5.672 1.5 1.5-.671 1.5-1.5 1.5-1.5-.672-1.5-1.5Zm5.5 7.5H2c-.276 0-.5-.225-.5-.5v-.937l3.676-2.673c.792-.575 1.856-.575 2.647 0l2.188 1.59c1.176.857 2.758.952 4.027.246l2.462-1.369V14c0 .275-.224.5-.5.5ZM2 3.5h14c.276 0 .5.225.5.5v5.261c-.124-.001-.249.018-.364.084l-2.827 1.57c-.762.424-1.711.365-2.416-.147L8.706 9.177c-1.32-.959-3.092-.959-4.412 0L1.5 11.209V4c0-.275.224-.5.5-.5ZM16 2H2C.896 2 0 2.896 0 4v10c0 1.104.896 2 2 2h14c1.104 0 2-.896 2-2V4c0-1.104-.896-2-2-2Z"
|
|
7
7
|
clipRule="evenodd"
|
|
8
8
|
/>
|
|
9
9
|
)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
export const Mobile = () => (
|
|
4
|
+
<path
|
|
5
|
+
fillRule="evenodd"
|
|
6
|
+
d="M9 13c-.553 0-1 .447-1 1 0 .553.447 1 1 1 .553 0 1-.447 1-1 0-.553-.447-1-1-1Zm3.5-13h-7c-1.104 0-2 .896-2 2v14c0 1.104.896 2 2 2h7c1.104 0 2-.896 2-2V2c0-1.104-.896-2-2-2Zm0 1.5c.275 0 .5.225.5.5v14c0 .275-.225.5-.5.5h-7c-.275 0-.5-.225-.5-.5V2c0-.275.225-.5.5-.5h7Z"
|
|
7
|
+
clipRule="evenodd"
|
|
8
|
+
/>
|
|
9
|
+
)
|
|
@@ -3,7 +3,7 @@ import React from 'react'
|
|
|
3
3
|
export const MoneyBill = () => (
|
|
4
4
|
<path
|
|
5
5
|
fillRule="evenodd"
|
|
6
|
-
d="M3.245
|
|
6
|
+
d="M3.245 14.2h11.51c.027-1.064.881-1.918 1.945-1.945v-6.51c-1.064-.027-1.918-.881-1.945-1.945H3.245C3.218 4.864 2.364 5.718 1.3 5.745v6.51c1.064.027 1.918.881 1.945 1.945ZM18 4v10c0 .828-.672 1.5-1.5 1.5h-15C.672 15.5 0 14.828 0 14V4c0-.828.672-1.5 1.5-1.5h15c.828 0 1.5.672 1.5 1.5Zm-6.5 5c0 2-1 3-2.5 3s-2.5-1-2.5-3 1-3 2.5-3 2.5 1 2.5 3Z"
|
|
7
7
|
clipRule="evenodd"
|
|
8
8
|
/>
|
|
9
9
|
)
|
|
@@ -3,7 +3,7 @@ import React from 'react'
|
|
|
3
3
|
export const Move = () => (
|
|
4
4
|
<path
|
|
5
5
|
fillRule="evenodd"
|
|
6
|
-
d="
|
|
6
|
+
d="M13.5 15c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5.672 1.5 1.5 1.5 1.5-.672 1.5-1.5Zm-6 0c0-.828-.671-1.5-1.5-1.5s-1.5.672-1.5 1.5.671 1.5 1.5 1.5 1.5-.672 1.5-1.5Zm6-12c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5.672 1.5 1.5 1.5 1.5-.672 1.5-1.5Zm-6 0c0-.828-.671-1.5-1.5-1.5S4.5 2.172 4.5 3 5.171 4.5 6 4.5 7.5 3.828 7.5 3Zm6 6c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5.672 1.5 1.5 1.5 1.5-.672 1.5-1.5ZM6 10.5c-.829 0-1.5-.672-1.5-1.5S5.171 7.5 6 7.5s1.5.672 1.5 1.5-.671 1.5-1.5 1.5Z"
|
|
7
7
|
clipRule="evenodd"
|
|
8
8
|
/>
|
|
9
9
|
)
|
|
@@ -2,8 +2,8 @@ import React from 'react'
|
|
|
2
2
|
|
|
3
3
|
export const PaperList = () => (
|
|
4
4
|
<path
|
|
5
|
-
clipRule="evenodd"
|
|
6
|
-
d="M16 3C16 1.343 14.657 0 13 0H3C1.343 0 0 1.343 0 3V15C0 16.657 1.343 18 3 18H13C14.657 18 16 16.657 16 15V3ZM13 16.5C13.827 16.5 14.5 15.827 14.5 15V3C14.5 2.173 13.827 1.5 13 1.5H3C2.173 1.5 1.5 2.173 1.5 3V15C1.5 15.827 2.173 16.5 3 16.5H13ZM4 5H12V4H4V5ZM4 8H12V7H4V8ZM4 11H12V10H4V11ZM4 14H12V13H4V14Z"
|
|
7
5
|
fillRule="evenodd"
|
|
6
|
+
d="M17 3c0-1.657-1.343-3-3-3H4C2.343 0 1 1.343 1 3v12c0 1.657 1.343 3 3 3h10c1.657 0 3-1.343 3-3V3Zm-3 13.5c.827 0 1.5-.673 1.5-1.5V3c0-.827-.673-1.5-1.5-1.5H4c-.827 0-1.5.673-1.5 1.5v12c0 .827.673 1.5 1.5 1.5h10ZM5 5h8V4H5v1Zm0 3h8V7H5v1Zm0 3h8v-1H5v1Zm0 3h8v-1H5v1Z"
|
|
7
|
+
clipRule="evenodd"
|
|
8
8
|
/>
|
|
9
9
|
)
|
|
@@ -3,7 +3,6 @@ import React from 'react'
|
|
|
3
3
|
export const Pix = () => (
|
|
4
4
|
<path
|
|
5
5
|
fillRule="evenodd"
|
|
6
|
-
d="
|
|
7
|
-
clipRule="evenodd"
|
|
6
|
+
d="m4.179688 3.6875-.53125.53125h.53125c.449218 0 .882812.113281 1.265624.324219.21875.117187.421876.269531.601563.453125l2.710937 2.707031c.195313.195313.515626.195313.710938 0l2.699219-2.699219c.144531-.144531.300781-.269531.472656-.375.414063-.261718.894531-.398437 1.398437-.398437h.324219L10.933594.800781c-1.066406-1.066406-2.800782-1.066406-3.867188 0Zm5.691406-1.824219c-.480469-.484375-1.261719-.484375-1.746094 0L6.535156 3.453125c.203125.140625.394532.300781.574219.480469L9.113281 5.9375l1.992188-1.992188c.144531-.144531.296875-.277343.457031-.394531Zm1.234375 12.191407L9.113281 12.0625l-2.003906 2.003906c-.179687.179688-.371094.339844-.574219.480469l1.59375 1.589844c.480469.484375 1.261719.484375 1.742188 0l1.691406-1.6875c-.160156-.117188-.3125-.25-.457031-.394531Zm1.535156-.683594c.414063.261718.894531.398437 1.398437.398437h.324219l-3.429687 3.429688c-1.066406 1.066406-2.800782 1.066406-3.867188 0L3.648438 13.78125h.53125c.449218 0 .882812-.113281 1.265624-.324219.21875-.117187.421876-.269531.601563-.453125l2.710937-2.707031c.191407-.191406.519532-.191406.710938 0l2.699219 2.699219c.144531.144531.300781.269531.472656.375Zm1.398437-.394532c-.488281 0-.964843-.199218-1.308593-.542968L10.03125 9.734375c-.246094-.246094-.582031-.367187-.917969-.367187-.335937 0-.671875.121093-.917969.367187l-2.707031 2.710937c-.34375.34375-.820312.539063-1.308593.539063H3.019531c-.046875 0-.09375.011719-.136719.03125L.800781 10.933594c-1.066406-1.066406-1.066406-2.800782 0-3.867188l2.082031-2.082031c.042969.019531.089844.03125.136719.03125h1.160157c.488281 0 .964843.195313 1.308593.539063l2.707031 2.710937c.253907.253906.585938.378906.917969.378906.332031 0 .664063-.125.917969-.378906l2.699219-2.699219c.34375-.34375.820312-.542968 1.308593-.542968h.941407c.050781 0 .101562-.011719.144531-.027344l2.074219 2.070312c1.066406 1.066406 1.066406 2.800782 0 3.867188L15.125 13.003906c-.042969-.015625-.09375-.027344-.144531-.027344Zm-.25-1.601562L11.417969 9l2.371093-2.375c.0625-.0625.160157-.101562.25-.101562h.496094l1.601563 1.605468c.484375.480469.484375 1.261719 0 1.742188l-1.601563 1.605468h-.496094c-.089843 0-.1875-.039062-.25-.101562ZM4.425781 6.617188 6.808594 9l-2.382813 2.382812c-.0625.0625-.15625.101563-.246093.101563h-.707032L1.863281 9.871094c-.484375-.480469-.484375-1.261719 0-1.742188l1.613281-1.613281h.703126c.089843 0 .183593.039063.246093.101563Zm0 0"
|
|
8
7
|
/>
|
|
9
8
|
)
|
|
@@ -3,7 +3,7 @@ import React from 'react'
|
|
|
3
3
|
export const Sync = () => (
|
|
4
4
|
<path
|
|
5
5
|
fillRule="evenodd"
|
|
6
|
-
d="
|
|
6
|
+
d="m17.1315 1.947-1.245 1.358C13.6965 1.011 11.4455 0 8.59449 0 4.42749 0 .0004883 3 .0004883 8.5H1.51549c0-4.5 3.561-6.945 7.079-6.945 2.45401 0 4.34101.858 6.25401 2.882l-1.58 1.725c-.294.32-.067.838.368.838h3.864c.276 0 .5-.224.5-.5V2.285c0-.456-.561-.674-.869-.338Zm-.646 7.553h1.515c0 5.5-4.428 8.5-8.59501 8.5-2.851 0-5.102-1.012-7.293-3.306L.868488 16.051c-.103.114-.235.164-.364.164-.257 0-.5039997-.198-.5039997-.501V11.5c0-.277.2229997-.5.4999997-.5H4.36149c.435 0 .662.517.369.838l-1.58 1.723c1.914 2.025 3.801 2.883 6.255 2.883 3.51801 0 7.08001-2.444 7.08001-6.944Z"
|
|
7
7
|
clipRule="evenodd"
|
|
8
8
|
/>
|
|
9
9
|
)
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Adjust } from './Adjust'
|
|
2
2
|
import { AngleLeft } from './AngleLeft'
|
|
3
3
|
import { AngleRight } from './AngleRight'
|
|
4
|
+
import { AngleDown } from './AngleDown'
|
|
4
5
|
import { App } from './App'
|
|
5
6
|
import { ArrowLeft } from './ArrowLeft'
|
|
6
7
|
import { SortDown } from './SortDown'
|
|
@@ -11,6 +12,7 @@ import { BarcodeRead } from './BarcodeRead'
|
|
|
11
12
|
import { Bell } from './Bell'
|
|
12
13
|
import { Blog } from './Blog'
|
|
13
14
|
import { Bullhorn } from './Bullhorn'
|
|
15
|
+
import { Calculator } from './Calculator'
|
|
14
16
|
import { CalendarAlt } from './CalendarAlt'
|
|
15
17
|
import { Cog } from './Cog'
|
|
16
18
|
import { Copy } from './Copy'
|
|
@@ -36,6 +38,7 @@ import { Order } from './Order'
|
|
|
36
38
|
import { Pagali } from './Pagali'
|
|
37
39
|
import { PaperList } from './PaperList'
|
|
38
40
|
import { PieChart } from './PieChart'
|
|
41
|
+
import { Plus } from './Plus'
|
|
39
42
|
import { PlusCircle } from './PlusCircle'
|
|
40
43
|
import { Print } from './Print'
|
|
41
44
|
import { InfoCircle } from './InfoCircle'
|
|
@@ -46,6 +49,8 @@ import { Trash } from './Trash'
|
|
|
46
49
|
import { TimesCircle } from './TimesCircle'
|
|
47
50
|
import { Minus } from './Minus'
|
|
48
51
|
import { Tv } from './Tv'
|
|
52
|
+
import { Desktop } from './Desktop'
|
|
53
|
+
import { Mobile } from './Mobile'
|
|
49
54
|
import { Truck } from './Truck'
|
|
50
55
|
import { UsdCircle } from './UsdCircle'
|
|
51
56
|
import { QuestionCircle } from './QuestionCircle'
|
|
@@ -64,6 +69,7 @@ export const icons = {
|
|
|
64
69
|
adjust: Adjust,
|
|
65
70
|
angleLeft: AngleLeft,
|
|
66
71
|
angleRight: AngleRight,
|
|
72
|
+
angleDown: AngleDown,
|
|
67
73
|
angleDiagonal: AngleDiagonal,
|
|
68
74
|
angleHeight: AngleHeight,
|
|
69
75
|
angleWidth: AngleWidth,
|
|
@@ -77,6 +83,7 @@ export const icons = {
|
|
|
77
83
|
bell: Bell,
|
|
78
84
|
blog: Blog,
|
|
79
85
|
bullhorn: Bullhorn,
|
|
86
|
+
calculator: Calculator,
|
|
80
87
|
calendarAlt: CalendarAlt,
|
|
81
88
|
camera: Camera,
|
|
82
89
|
check: Check,
|
|
@@ -105,6 +112,7 @@ export const icons = {
|
|
|
105
112
|
pagali: Pagali,
|
|
106
113
|
paperList: PaperList,
|
|
107
114
|
pieChart: PieChart,
|
|
115
|
+
plus: Plus,
|
|
108
116
|
plusCircle: PlusCircle,
|
|
109
117
|
print: Print,
|
|
110
118
|
shoppingCart: ShoppingCart,
|
|
@@ -118,6 +126,8 @@ export const icons = {
|
|
|
118
126
|
timesCircle: TimesCircle,
|
|
119
127
|
minus: Minus,
|
|
120
128
|
tv: Tv,
|
|
129
|
+
desktop: Desktop,
|
|
130
|
+
mobile: Mobile,
|
|
121
131
|
truck: Truck,
|
|
122
132
|
usdCircle: UsdCircle,
|
|
123
133
|
questionCircle: QuestionCircle,
|