38 | `;
39 |
--------------------------------------------------------------------------------
/src/components/formControls/textarea/index.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import { StyledWrapper, StyledArea } from './style'
7 |
8 | export interface Props {
9 | id?: string
10 | value?: string
11 | defaultValue?: string
12 | readOnly?: boolean
13 | placeholder?: string
14 | disabled?: boolean
15 | fieldError?: boolean
16 | onChange?: (event: React.ChangeEvent) => void
17 | }
18 |
19 | export default class TextArea extends React.PureComponent {
20 | render () {
21 | const { id, onChange, value, defaultValue, readOnly, placeholder, disabled, fieldError } = this.props
22 |
23 | return (
24 |
25 |
34 |
35 | )
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/src/components/formControls/textarea/spec.tsx:
--------------------------------------------------------------------------------
1 | /* global jest, expect, describe, it, afterEach */
2 | import * as React from 'react'
3 | import { shallow } from 'enzyme'
4 | import { create } from 'react-test-renderer'
5 | import TextArea from './index'
6 | import { TestThemeProvider } from '../../../theme'
7 |
8 | describe('TextArea tests', () => {
9 | const baseComponent = (props?: object) =>
10 |
11 | describe('basic tests', () => {
12 | it('matches the snapshot', () => {
13 | const component = baseComponent()
14 | const tree = create(component).toJSON()
15 | expect(tree).toMatchSnapshot()
16 | })
17 |
18 | it('renders the component', () => {
19 | const wrapper = shallow(baseComponent())
20 | const assertion = wrapper.find('#area').length
21 | expect(assertion).toBe(1)
22 | })
23 | })
24 | })
25 |
--------------------------------------------------------------------------------
/src/components/formControls/textarea/style.ts:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import styled from 'styled-components'
6 | import { Props } from './index'
7 |
8 | const getBorder = (p: Props) => {
9 | let color = '#DFDFE8'
10 |
11 | if (p.disabled) {
12 | color = '#E5E5EA'
13 | }
14 |
15 | if (p.fieldError) {
16 | color = '#E2052A'
17 | }
18 |
19 | return color
20 | }
21 |
22 | export const StyledWrapper = styled('div')<{}>`
23 | width: 100%;
24 | `
25 |
26 | export const StyledArea = styled('textarea')`
27 | min-height: 140px;
28 | box-sizing: border-box;
29 | width: 100%;
30 | font-family: Poppins, sans-serif;
31 | border: 1px solid ${p => getBorder(p)};
32 | color: ${(p) => p.disabled ? '#D1D1DB' : '#686978'};
33 | border-radius: 6px;
34 | padding: 15px 20px;
35 | font-size: 16px;
36 | line-height: 26px;
37 |
38 | &:disabled {
39 | background: #fff;
40 | }
41 |
42 | &:focus {
43 | border-color: #A1A8F2;
44 | outline: none;
45 | }
46 | `
47 |
--------------------------------------------------------------------------------
/src/components/icons/alert-circle.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/alert-message-o.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
15 | )
16 |
17 | // Styled Component for SVG
18 | export default GenerateComponentForGraphic(Graphic)
19 |
--------------------------------------------------------------------------------
/src/components/icons/arrow.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
15 | )
16 |
17 | // Styled Component for SVG
18 | export default GenerateComponentForGraphic(Graphic)
19 |
--------------------------------------------------------------------------------
/src/components/icons/block-l.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/block-r.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/block-s.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/bookmark-folder.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/bookmark-o.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
15 | )
16 |
17 | // Styled Component for SVG
18 | export default GenerateComponentForGraphic(Graphic)
19 |
--------------------------------------------------------------------------------
/src/components/icons/bookmark.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
15 | )
16 |
17 | // Styled Component for SVG
18 | export default GenerateComponentForGraphic(Graphic)
19 |
--------------------------------------------------------------------------------
/src/components/icons/bookmarkBook.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-circle-o.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
13 | )
14 |
15 | // Styled Component for SVG
16 | export default GenerateComponentForGraphic(Graphic)
17 |
--------------------------------------------------------------------------------
/src/components/icons/carat-circle.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
13 | )
14 |
15 | // Styled Component for SVG
16 | export default GenerateComponentForGraphic(Graphic)
17 |
--------------------------------------------------------------------------------
/src/components/icons/carat-down-l.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-down-r.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-down-s.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-strong.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-down-l.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-down-r.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-down-s.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-left-l.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-left-r.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-left-s.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-right-l.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-right-r.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-right-s.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-up-l.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-up-r.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat-triangle-up-s.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/carat.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/check-circle.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/check.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/checkmark-circle-l.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 | import * as React from 'react'
7 | import GenerateComponentForGraphic from './template'
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
14 | )
15 | // Styled Component for SVG
16 | export default GenerateComponentForGraphic(Graphic)
17 |
--------------------------------------------------------------------------------
/src/components/icons/checkmark-circle-r.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 | import * as React from 'react'
7 | import GenerateComponentForGraphic from './template'
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
14 | )
15 | // Styled Component for SVG
16 | export default GenerateComponentForGraphic(Graphic)
17 |
--------------------------------------------------------------------------------
/src/components/icons/checkmark-circle-s.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 | import * as React from 'react'
7 | import GenerateComponentForGraphic from './template'
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
14 | )
15 | // Styled Component for SVG
16 | export default GenerateComponentForGraphic(Graphic)
17 |
--------------------------------------------------------------------------------
/src/components/icons/clipboard-o.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/clipboard.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
15 | )
16 |
17 | // Styled Component for SVG
18 | export default GenerateComponentForGraphic(Graphic)
19 |
--------------------------------------------------------------------------------
/src/components/icons/close-circle-o.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/close-circle.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
15 | )
16 |
17 | // Styled Component for SVG
18 | export default GenerateComponentForGraphic(Graphic)
19 |
--------------------------------------------------------------------------------
/src/components/icons/close.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
15 | )
16 |
17 | // Styled Component for SVG
18 | export default GenerateComponentForGraphic(Graphic)
19 |
--------------------------------------------------------------------------------
/src/components/icons/credit-card.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | export const Graphic = (
9 |
12 | )
13 |
14 | export default GenerateComponentForGraphic(Graphic)
15 |
--------------------------------------------------------------------------------
/src/components/icons/download.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/edit-o.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/embed-o.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/emote-sad.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/emote-smile.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
20 | )
21 |
22 | // Styled Component for SVG
23 | export default GenerateComponentForGraphic(Graphic)
24 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-bat-grey.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 | // Direct access to SVG
8 | export const Graphic = (
9 |
31 | )
32 | // Styled Component for SVG
33 | export default GenerateComponentForGraphic(Graphic)
34 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-bat.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 | // Direct access to SVG
8 | export const Graphic = (
9 |
31 | )
32 | // Styled Component for SVG
33 | export default GenerateComponentForGraphic(Graphic)
34 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-bitcoin.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
17 | )
18 |
19 | // Styled Component for SVG
20 | export default GenerateComponentForGraphic(Graphic)
21 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-ethereum.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
36 | )
37 |
38 | // Styled Component for SVG
39 | export default GenerateComponentForGraphic(Graphic)
40 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-facebook.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
22 | )
23 |
24 | // Styled Component for SVG
25 | export default GenerateComponentForGraphic(Graphic)
26 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-linkedin.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
22 | )
23 |
24 | // Styled Component for SVG
25 | export default GenerateComponentForGraphic(Graphic)
26 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-litecoin.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
17 | )
18 |
19 | // Styled Component for SVG
20 | export default GenerateComponentForGraphic(Graphic)
21 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-medium.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
20 | )
21 |
22 | // Styled Component for SVG
23 | export default GenerateComponentForGraphic(Graphic)
24 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-stack-overflow.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
19 | )
20 |
21 | // Styled Component for SVG
22 | export default GenerateComponentForGraphic(Graphic)
23 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-twitch.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
20 | )
21 |
22 | // Styled Component for SVG
23 | export default GenerateComponentForGraphic(Graphic)
24 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-twitter.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-unsplash.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
13 | )
14 |
15 | // Styled Component for SVG
16 | export default GenerateComponentForGraphic(Graphic)
17 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-vimeo.tsx:
--------------------------------------------------------------------------------
1 |
2 | /* This Source Code Form is subject to the terms of the Mozilla Public
3 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
4 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 |
6 | import * as React from 'react'
7 | import GenerateComponentForGraphic from './template'
8 |
9 | // Direct access to SVG
10 | export const Graphic = (
11 |
21 | )
22 |
23 | // Styled Component for SVG
24 | export default GenerateComponentForGraphic(Graphic)
25 |
--------------------------------------------------------------------------------
/src/components/icons/fc-logo-youtube.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
20 | )
21 |
22 | // Styled Component for SVG
23 | export default GenerateComponentForGraphic(Graphic)
24 |
--------------------------------------------------------------------------------
/src/components/icons/fc-monthly-contributions.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | export const Graphic = (
11 |
21 | )
22 |
23 | export default GenerateComponentForGraphic(Graphic)
24 |
--------------------------------------------------------------------------------
/src/components/icons/fc-rewards-check.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
19 | )
20 |
21 | // Styled Component for SVG
22 | export default GenerateComponentForGraphic(Graphic)
23 |
--------------------------------------------------------------------------------
/src/components/icons/folder.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
15 | )
16 |
17 | // Styled Component for SVG
18 | export default GenerateComponentForGraphic(Graphic)
19 |
--------------------------------------------------------------------------------
/src/components/icons/graph-o.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/heart-l.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/heart-r.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/heart-s.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/history.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
15 | )
16 |
17 | // Styled Component for SVG
18 | export default GenerateComponentForGraphic(Graphic)
19 |
--------------------------------------------------------------------------------
/src/components/icons/loader.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
13 | )
14 |
15 | // Styled Component for SVG
16 | export default GenerateComponentForGraphic(Graphic)
17 |
--------------------------------------------------------------------------------
/src/components/icons/logo-facebook.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/logo-twitter.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/logo-youtube.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/more-vert-l.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/more-vert-r.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/more-vert-s.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/open-new.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/payment-due.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/pin-o.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
15 | )
16 |
17 | // Styled Component for SVG
18 | export default GenerateComponentForGraphic(Graphic)
19 |
--------------------------------------------------------------------------------
/src/components/icons/pin.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react';
8 | import GenerateComponentForGraphic from './template';
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/plus.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | export const Graphic = (
9 |
12 | )
13 |
14 | export default GenerateComponentForGraphic(Graphic)
15 |
--------------------------------------------------------------------------------
/src/components/icons/print.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/recent-history.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/refresh.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/send.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/settings.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/shield-alert-o.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/shield-alert.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/template.tsx:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components'
2 |
3 | export interface IconProps {
4 | // text description, for accessiblity
5 | title?: string
6 | }
7 |
8 | export default function GenerateIconComponentForGraphic (Graphic: JSX.Element): any {
9 |
10 | return styled.svg.attrs((props: IconProps) => ({
11 | children: [Graphic.props.children],
12 | viewBox: '0 0 32 32',
13 | 'aria-hidden': props.title === undefined ? 'true' : undefined,
14 | focusable: 'false',
15 | role: props.title !== undefined ? 'img' : undefined
16 | }))`
17 | width: 100%;
18 | height: 100%;
19 | fill: currentColor;
20 | `
21 | }
22 |
--------------------------------------------------------------------------------
/src/components/icons/thumbs-up.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/trash-o.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/trash.tsx:
--------------------------------------------------------------------------------
1 | /* This Source Code Form is subject to the terms of the Mozilla Public
2 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 |
5 | import * as React from 'react'
6 | import GenerateComponentForGraphic from './template'
7 |
8 | // Direct access to SVG
9 | export const Graphic = (
10 |
13 | )
14 |
15 | // Styled Component for SVG
16 | export default GenerateComponentForGraphic(Graphic)
17 |
--------------------------------------------------------------------------------
/src/components/icons/unverified-s.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from "react";
8 | import GenerateComponentForGraphic from "./template";
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | );
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic);
20 |
--------------------------------------------------------------------------------
/src/components/icons/verified-s.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
16 | )
17 |
18 | // Styled Component for SVG
19 | export default GenerateComponentForGraphic(Graphic)
20 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-add.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-backup.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-block.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-check.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-close.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-import.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-info.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-lock.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-manage.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
17 | )
18 |
19 | // Styled Component for SVG
20 | export default GenerateComponentForGraphic(Graphic)
21 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-minus.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-open.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
17 | )
18 |
19 | // Styled Component for SVG
20 | export default GenerateComponentForGraphic(Graphic)
21 |
--------------------------------------------------------------------------------
/src/components/icons/wallet-withdraw.tsx:
--------------------------------------------------------------------------------
1 | // THIS FILE IS AUTOGENERATED, DO NOT MODIFY MANUALLY
2 | /* tslint:disable */
3 | /* This Source Code Form is subject to the terms of the Mozilla Public
4 | * License. v. 2.0. If a copy of the MPL was not distributed with this file.
5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 |
7 | import * as React from 'react'
8 | import GenerateComponentForGraphic from './template'
9 |
10 | // Direct access to SVG
11 | export const Graphic = (
12 |
18 | )
19 |
20 | // Styled Component for SVG
21 | export default GenerateComponentForGraphic(Graphic)
22 |
--------------------------------------------------------------------------------
/src/components/layout/card/__snapshots__/spec.tsx.snap:
--------------------------------------------------------------------------------
1 | // Jest Snapshot v1, https://goo.gl/fbAQLP
2 |
3 | exports[`card tests basic tests matches the snapshot 1`] = `
4 | .c0 {
5 | max-width: 100%;
6 | width: 100%;
7 | min-height: auto;
8 | margin: 0;
9 | background-color: #FFFFFF;
10 | border-radius: 4px;
11 | box-shadow: 0 2px 4px rgba(0,0,0,.15);
12 | font-size: inherit;
13 | font-family: Poppins,sans-serif;
14 | box-sizing: border-box;
15 | position: relative;
16 | }
17 |
18 | .c1 {
19 | padding: 32px;
20 | }
21 |
22 |