refactor: remove unused imports

This commit is contained in:
Tom French 2022-05-07 15:08:23 +01:00 committed by James Long
parent 3e9cfece83
commit d705cd351b
86 changed files with 61 additions and 512 deletions

View file

@ -1,6 +1,6 @@
import { send } from '../../platform/client/fetch';
import constants from '../constants';
import { getPayees, getAccounts, filterTransactions } from './queries';
import { getPayees, getAccounts } from './queries';
import { addNotification } from './notifications';
export function setAccountsSyncing(name) {

View file

@ -1,10 +1,7 @@
import { send } from '../../platform/client/fetch';
import constants from '../constants';
import { loadPrefs } from './prefs';
import { createBudget, loadBudget } from './budgets';
import { getCategories, getAccounts, getPayees } from './queries';
import { syncAccounts } from './account';
import { setAppState } from './app';
import { pushModal } from './modals';
import { getUploadError } from '../../shared/errors';

View file

@ -1,4 +1,3 @@
import constants from '../constants';
import { send } from '../../platform/client/fetch';
import Platform from '../platform';
import { pushModal } from './modals';

View file

@ -1,5 +1,5 @@
import React, { useMemo, useEffect, useState, useContext } from 'react';
import q, { liveQuery, runQuery } from 'loot-core/src/client/query-helpers';
import React, { useEffect, useState, useContext } from 'react';
import q, { liveQuery } from 'loot-core/src/client/query-helpers';
import { getAccountsById } from 'loot-core/src/client/reducers/queries';
export function useAccounts() {

View file

@ -1,5 +1,5 @@
import React, { useMemo, useEffect, useState, useContext } from 'react';
import q, { liveQuery, runQuery } from 'loot-core/src/client/query-helpers';
import React, { useEffect, useState, useContext } from 'react';
import q, { liveQuery } from 'loot-core/src/client/query-helpers';
import { getPayeesById } from 'loot-core/src/client/reducers/queries';
export function usePayees() {

View file

@ -1,11 +1,9 @@
import React, { useMemo, useEffect, useState, useContext } from 'react';
import * as monthUtils from 'loot-core/src/shared/months';
import React, { useEffect, useState, useContext } from 'react';
import {
getStatus,
getHasTransactionsQuery
} from 'loot-core/src/shared/schedules';
import q, { liveQuery, runQuery } from 'loot-core/src/client/query-helpers';
import { send } from 'loot-core/src/platform/client/fetch';
import q, { liveQuery } from 'loot-core/src/client/query-helpers';
function loadStatuses(schedules, onData) {
return liveQuery(getHasTransactionsQuery(schedules), onData, {

View file

@ -1,5 +1,5 @@
import { listen, send } from '../platform/client/fetch';
import { once, runAgain } from '../shared/async';
import { once } from '../shared/async';
import q, { getPrimaryOrderBy } from '../shared/query';
export default q;

View file

@ -1,4 +1,3 @@
import dateFns from 'date-fns';
const uuid = require('../platform/uuid');
export function generateAccount(balance) {

View file

@ -5,7 +5,6 @@ import * as sheet from '../server/sheet';
import * as rules from '../server/accounts/transaction-rules';
import * as tracking from '../server/tracking/events';
import { setSyncingMode } from '../server/sync';
import * as monthUtils from '../shared/months';
import { updateVersion } from '../server/update';
import { resetTracer, tracer } from '../shared/test-helpers';
import {

View file

@ -4,16 +4,7 @@ require('fake-indexeddb/auto');
let FDBFactory = require('fake-indexeddb/lib/FDBFactory');
let idb = require('../indexeddb');
let {
init,
populateFileHeirarchy,
readFile,
writeFile,
exists,
pathToId,
listDir,
join
} = require('./index');
let { init, readFile, writeFile, exists, pathToId, join } = require('./index');
beforeAll(() => {
process.env.PUBLIC_URL =

View file

@ -1,4 +1,3 @@
import fs from 'fs';
import csvStringify from 'csv-stringify/lib/sync';
import { runQuery as aqlQuery } from '../aql/schema/run-query';
import { integerToAmount } from '../../shared/util';

View file

@ -7,7 +7,6 @@ import {
isAfter,
addDays,
subDays,
format as formatDate,
parseDate
} from '../../shared/months';
import { fastSetMerge } from '../../shared/util';

View file

@ -1,6 +1,5 @@
import {
parseDateString,
parseRecurDate,
rankRules,
iterateIds,
Condition,

View file

@ -1,24 +1,15 @@
import title from './title';
import * as db from '../db';
import {
mergeObjects,
hasFieldsChanged,
toRelaxedNumber,
amountToInteger,
integerToAmount
} from '../../shared/util';
import { hasFieldsChanged, amountToInteger } from '../../shared/util';
import {
makeChild as makeChildTransaction,
recalculateSplit
} from '../../shared/transactions';
import * as monthUtils from '../../shared/months';
import { transactionModel } from '../api-models';
import { getServer } from '../server-config';
import { batchMessages } from '../sync';
import { runMutator } from '../mutators';
import { getStartingBalancePayee } from './payees';
import * as transfer from './transfer';
import { TransactionError } from '../errors';
import { runRules } from './transaction-rules';
import { batchUpdateTransactions } from './transactions';

View file

@ -17,13 +17,11 @@ import {
sortNumbers,
getApproxNumberThreshold
} from '../../shared/rules';
import q from '../../shared/query';
import { requiredFields, toDateRepr } from '../models';
import { currentDay } from '../../shared/months';
import { partitionByField, fastSetMerge } from '../../shared/util';
import { setSyncingMode, batchMessages } from '../sync';
import { schemaConfig } from '../aql/schema';
const uuid = require('../../platform/uuid');
// TODO: Detect if it looks like the user is creating a rename rule
// and prompt to create it in the pre phase instead

View file

@ -1,5 +1,4 @@
import * as db from '../db';
import { Rule } from './rules';
import {
getRules,
loadRules,
@ -15,7 +14,6 @@ import {
migrateOldRules
} from './transaction-rules';
import { loadMappings } from '../db/mappings';
import { applyMigration } from '../migrate/migrations';
import { runQuery } from '../aql/schema/run-query';
import q from '../../shared/query';

View file

@ -1,4 +1,3 @@
import * as sheet from '../sheet';
import { batchMessages } from '../sync';
import * as db from '../db';
import { incrFetch, whereIn } from '../db/util';

View file

@ -1,6 +1,5 @@
import { addTransactions } from './accounts/sync';
import {
transactionModel,
accountModel,
categoryModel,
categoryGroupModel,
@ -16,17 +15,14 @@ import * as db from './db';
import * as sheet from './sheet';
import * as prefs from './prefs';
import * as monthUtils from '../shared/months';
import * as update from './update';
import * as cloudStorage from './cloud-storage';
import { setSyncingMode, batchMessages } from './sync';
import { groupById, cleanUUID } from '../shared/util';
import { getClock } from './timestamp';
import { runMutator } from './mutators';
import { integerToAmount } from '../shared/util';
import { runQuery as aqlQuery } from './aql/schema/run-query';
import q from '../shared/query';
const { resolveName } = require('./spreadsheet/util');
const connection = require('../platform/server/connection');
let IMPORT_MODE = false;

View file

@ -1,6 +1,5 @@
import * as db from '../../db';
import { whereIn } from '../../db/util';
import { groupBy } from '../../../shared/util';
import { isAggregateQuery } from '../compiler';
import { convertOutputType } from '../schema-helpers';
import { execQuery } from '../exec';

View file

@ -1,16 +1,12 @@
import fc from 'fast-check';
import * as db from '../../db';
import query from '../../../shared/query';
import { makeChild } from '../../../shared/transactions';
import { batchMessages, setSyncingMode } from '../../sync/index';
import { setClock } from '../../timestamp';
import { groupById } from '../../../shared/util';
import arbs from '../../../mocks/arbitrary-schema';
import { isAggregateQuery } from '../compiler';
import { runQuery } from './run-query';
import { toGroup, isHappyPathQuery } from './executors';
const uuid = require('../../../platform/uuid');
import { isHappyPathQuery } from './executors';
beforeEach(global.emptyDatabase());

View file

@ -1,7 +1,6 @@
import * as monthUtils from '../../shared/months';
import * as db from '../db';
import { batchMessages } from '../sync';
import { groupBySingle } from '../../shared/util';
import * as prefs from '../prefs';
import * as sheet from '../sheet';

View file

@ -1,5 +1,4 @@
import * as sheet from '../sheet';
import * as monthUtils from '../../shared/months';
import { number, sumAmounts } from './util';
const { resolveName } = require('../spreadsheet/util');

View file

@ -1,5 +1,4 @@
import './polyfills';
import { differenceInDays } from 'date-fns';
import asyncStorage from '../platform/server/asyncStorage';
import { captureException, captureBreadcrumb } from '../platform/exceptions';
import * as prefs from './prefs';

View file

@ -3,8 +3,7 @@ import {
withMigrationsDir,
getAppliedMigrations,
getMigrationList,
getPending,
applyMigration
getPending
} from './migrations';
import * as db from '../db';

View file

@ -1,5 +1,5 @@
import Platform from './platform';
const { PostError, HTTPError } = require('./errors');
const { PostError } = require('./errors');
const { fetch } = require('../platform/server/fetch');
function throwIfNot200(res, text) {

View file

@ -5,8 +5,6 @@ import * as db from '../db';
import * as prefs from '../prefs';
import { toDateRepr } from '../models';
import { runQuery as aqlQuery } from '../aql/schema/run-query';
import { compileQuery } from '../aql/compiler';
import { schema, schemaConfig } from '../aql/schema';
import { dayFromDate, currentDay, parseDate } from '../../shared/months';
import q from '../../shared/query';
import {

View file

@ -1,4 +1,3 @@
import * as db from '../db';
import { runQuery as aqlQuery } from '../aql/schema/run-query';
import q from '../../shared/query';
import { loadRules, updateRule } from '../accounts/transaction-rules';
@ -6,7 +5,6 @@ import { loadMappings } from '../db/mappings';
import {
updateConditions,
getNextDate,
listSchedules,
createSchedule,
updateSchedule,
deleteSchedule,

View file

@ -7,7 +7,7 @@ import { runQuery as aqlQuery } from '../aql/schema/run-query';
import q from '../../shared/query';
import { getApproxNumberThreshold } from '../../shared/rules';
import { recurConfigToRSchedule } from '../../shared/schedules';
import { dayFromDate, parseDate, subDays } from '../../shared/months';
import { dayFromDate, parseDate } from '../../shared/months';
import { conditionsToAQL } from '../accounts/transaction-rules';
const uuid = require('../../platform/uuid');

View file

@ -1,5 +1,4 @@
import * as nodes from './nodes';
const uuid = require('../../../platform/uuid');
let _uid = 0;
function resetUid() {

View file

@ -1,5 +1,5 @@
import { compile, compileBinding } from './compiler';
import { MOV, CALL, QUERY, UOP, BOP, REG1, SP, VAR, JUMPF, JUMPT } from './ops';
import { compile } from './compiler';
import { MOV, CALL, QUERY, UOP, BOP, JUMPF, JUMPT } from './ops';
export default class VM {
constructor(db, scopes) {

View file

@ -1,5 +1,4 @@
import { sequential, once } from '../../shared/async';
import * as perf from '../perf';
import * as prefs from '../prefs';
import app from '../main-app';
import asyncStorage from '../../platform/server/asyncStorage';

View file

@ -1,12 +1,11 @@
import fc from 'fast-check';
import * as db from '../db';
import { migrateParentIds, listen, unlisten } from './migrate';
import { addSyncListener, batchMessages, sendMessages } from './index';
import { listen, unlisten } from './migrate';
import { addSyncListener, sendMessages } from './index';
import { execTracer } from '../../shared/test-helpers';
import { schema, schemaConfig } from '../aql/schema';
import arbs from '../../mocks/arbitrary-schema';
import { convertInputType } from '../aql/schema-helpers';
import { groupBy } from '../../shared/util';
beforeEach(() => {
listen();

View file

@ -2,13 +2,10 @@ import * as prefs from '../prefs';
import * as db from '../db';
import * as sheet from '../sheet';
import * as sync from './index';
import Timestamp, { deserializeClock, getClock } from '../timestamp';
import Timestamp, { getClock } from '../timestamp';
import * as merkle from '../merkle';
import * as encoder from './encoder';
const Database = require('better-sqlite3');
const fs = require('fs');
const jsc = require('jsverify');
const uuid = require('uuid');
const uuidGenerator = jsc
.integer(97, 122)
.smap(x => String.fromCharCode(x), x => x.charCodeAt(x));

View file

@ -2,13 +2,7 @@ import * as prefs from '../prefs';
import * as db from '../db';
import * as sheet from '../sheet';
import Timestamp, { getClock } from '../timestamp';
import { resolveName } from '../spreadsheet/util';
import {
setSyncingMode,
sendMessages,
applyMessages,
fullSync
} from './index';
import { setSyncingMode, sendMessages, applyMessages, fullSync } from './index';
import * as encoder from './encoder';
const mockSyncServer = require('../tests/mockSyncServer');

View file

@ -1,4 +1,3 @@
import dateFns from 'date-fns';
import * as merkle from '../merkle';
import Timestamp, { makeClock } from '../timestamp';
const defaultMockData = require('./mockData').basic;

View file

@ -1,4 +1,4 @@
import Timestamp, { setClock, makeClock } from './timestamp';
import Timestamp from './timestamp';
describe('Timestamp', function() {
let now = 0;

View file

@ -1,4 +1,3 @@
import { batchMessages } from '../sync';
import { runMutator } from '../mutators';
import { createApp } from '../app';
import * as db from '../db';

View file

@ -1,6 +1,4 @@
import asyncStorage from '../../platform/server/asyncStorage';
import { sha256String } from '../encryption-internals';
let uuid = require('../../platform/uuid');
let currentUniqueId;
let mixpanel;

View file

@ -1,4 +1,4 @@
import { last, diffItems, getChangedValues, applyChanges } from './util';
import { last, diffItems, applyChanges } from './util';
const uuid = require('../platform/uuid');
// The amount might be null when adding a new transaction

View file

@ -5,7 +5,6 @@ import {
addSplitTransaction,
makeChild
} from './transactions';
import * as db from '../server/db';
const uuid = require('../platform/uuid');
// const data = {

View file

@ -1,4 +1,3 @@
let path = require('path');
let webpack = require('webpack');
let config = require('./webpack.desktop.config');

View file

@ -1,7 +1,7 @@
import React, { useMemo } from 'react';
import { View, Text, Select } from './common';
import Autocomplete, { defaultFilterSuggestion } from './Autocomplete';
import { styles, colors } from '../style';
import { colors } from '../style';
import Split from '../svg/split';
export const NativeCategorySelect = React.forwardRef(

View file

@ -7,10 +7,9 @@ import React, {
useMemo
} from 'react';
import * as d from 'date-fns';
import { css } from 'glamor';
import Pikaday from 'pikaday';
import 'pikaday/css/pikaday.css';
import { styles, colors } from '../style';
import { colors } from '../style';
import { View, Input, Tooltip } from './common';
import {
getDayMonthFormat,

View file

@ -1,5 +1,5 @@
import React, { useState, useMemo, useRef } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import { useDispatch } from 'react-redux';
import { getActivePayees } from 'loot-core/src/client/reducers/queries';
import { createPayee } from 'loot-core/src/client/actions/queries';
import { useCachedPayees } from 'loot-core/src/client/data-hooks/payees';

View file

@ -1,8 +1,5 @@
import PropTypes from 'prop-types';
import React, { useEffect, useReducer, useState } from 'react';
import * as d from 'date-fns';
import { useSelector } from 'react-redux';
import { parse as parseDate } from 'date-fns';
import { sendCatch } from 'loot-core/src/platform/client/fetch';
import * as monthUtils from 'loot-core/src/shared/months';
import { getRecurringDescription } from 'loot-core/src/shared/schedules';
@ -16,7 +13,7 @@ import {
Text,
Stack
} from '../components/common';
import { colors, styles } from 'loot-design/src/style';
import { colors } from 'loot-design/src/style';
import { useTooltip } from 'loot-design/src/components/tooltips';
import SubtractIcon from 'loot-design/src/svg/Subtract';
import AddIcon from 'loot-design/src/svg/Add';

View file

@ -1,4 +1,4 @@
import React, { useCallback, useState } from 'react';
import React from 'react';
import RecurringSchedulePicker from './RecurringSchedulePicker';
import { Section } from '../guide/components';
import { Button, View } from './common';

View file

@ -1,4 +1,4 @@
import React, { useContext, useState, useMemo, useEffect } from 'react';
import React, { useContext, useState, useMemo } from 'react';
import ElementQuery from '../ElementQuery';
import {
View,

View file

@ -4,7 +4,6 @@ import React, {
useLayoutEffect,
useState,
useCallback,
useMemo
} from 'react';
import { css } from 'glamor';
import mergeRefs from 'react-merge-refs';
@ -18,7 +17,6 @@ import {
useRouteMatch
} from 'react-router-dom';
import {
Listbox,
ListboxInput,
ListboxButton,
ListboxPopover,

View file

@ -1,6 +1,6 @@
import React, { useState } from 'react';
import { View, Text, Modal, Button, ButtonWithLoading } from '../common';
import { styles, colors } from '../../style';
import { View, Text, Modal, ButtonWithLoading } from '../common';
import { colors } from '../../style';
export default function DeleteMenu({ modalProps, actions, file }) {
let [loadingState, setLoadingState] = useState(null);

View file

@ -1,5 +1,5 @@
import React, { useState } from 'react';
import { View, Block, Modal, Button, Link } from '../common';
import { View, Block, Modal, Button } from '../common';
import { styles, colors } from '../../style';
function getErrorMessage(error) {

View file

@ -7,7 +7,6 @@ import {
Modal,
Button,
ButtonWithLoading,
Link,
P
} from '../common';
import { styles, colors } from '../../style';

View file

@ -7,7 +7,6 @@ import {
Modal,
ButtonWithLoading,
Button,
Link,
P,
ExternalLink
} from '../common';

View file

@ -1,5 +1,3 @@
import React from 'react';
export default function InputAccessoryView() {
return null;
}

View file

@ -4,7 +4,6 @@ import { MobileScreen } from '../../guide/components';
import { categories, categoryGroups } from './budget.usage';
import { BudgetTable, BudgetAccessoryView } from './budget';
import InputAccessoryView from './InputAccessoryView';
import { debugDOM } from 'loot-core/src/mocks/util';
import SpreadsheetContext from '../spreadsheet/SpreadsheetContext';
import * as monthUtils from 'loot-core/src/shared/months';
import makeSpreadsheet from 'loot-core/src/mocks/spreadsheet';

View file

@ -1,7 +1,7 @@
import React from 'react';
import { View } from 'react-native';
import { MobileSection } from '../../guide/components';
import { BudgetTable, BudgetHeader, BudgetAccessoryView } from './budget';
import { BudgetTable, BudgetAccessoryView } from './budget';
import InputAccessoryView from './InputAccessoryView';
import { generateCategoryGroups } from 'loot-core/src/mocks';
import SpreadsheetContext from '../spreadsheet/SpreadsheetContext';

View file

@ -22,7 +22,7 @@ import {
deleteTransaction,
realizeTempTransactions
} from 'loot-core/src/shared/transactions';
import { applyChanges, titleFirst } from 'loot-core/src/shared/util';
import { titleFirst } from 'loot-core/src/shared/util';
import {
integerToCurrency,
integerToAmount,
@ -48,9 +48,6 @@ import {
import EditSkull1 from '../../svg/v2/EditSkull1';
import AlertTriangle from '../../svg/v2/AlertTriangle';
import CalendarIcon from '../../svg/v2/Calendar';
import ValidationCheck from '../../svg/v2/ValidationCheck';
import FavoriteStar from '../../svg/v2/FavoriteStar';
import CheckCircle1 from '../../svg/v2/CheckCircle1';
import ArrowsSynchronize from 'loot-design/src/svg/v2/ArrowsSynchronize';

View file

@ -8,7 +8,6 @@ import {
P,
Select,
FormError,
AnchorLink
} from '../common';
import { integerToCurrency } from 'loot-core/src/shared/util';
import { colors } from '../../style';

View file

@ -1,7 +1,6 @@
import React from 'react';
import { toRelaxedNumber } from 'loot-core/src/shared/util';
import { determineOffBudget } from 'loot-core/src/shared/accounts';
import { styles, colors } from '../../style';
import {
View,
Modal,

View file

@ -4,7 +4,7 @@ import { parseISO, format as formatDate, parse as parseDate } from 'date-fns';
import * as actions from 'loot-core/src/client/actions';
import { amountToInteger } from 'loot-core/src/shared/util';
import { currentDay, dayFromDate } from 'loot-core/src/shared/months';
import { View, Modal, Stack, Button, Input } from '../common';
import { View, Modal, Input } from '../common';
import DateSelect from '../DateSelect';
import CategoryAutocomplete from '../CategorySelect';
import AccountAutocomplete from '../AccountAutocomplete';

View file

@ -19,7 +19,7 @@ import {
} from '../common';
import { Checkbox } from '../forms';
import { TableHeader, TableWithNavigator, Row, Field } from '../table';
import { SectionLabel, FieldLabel } from '../forms';
import { SectionLabel } from '../forms';
import { colors, styles } from '../../style';
let dateFormats = [

View file

@ -1,7 +1,7 @@
import React from 'react';
import { View, Text, Block, Modal, Button } from '../common';
import { Row, Cell, DeleteCell } from '../table';
import { styles, colors } from '../../style';
import { Row, Cell } from '../table';
import { colors } from '../../style';
class BackupTable extends React.Component {
state = { hoveredBackup: null };

View file

@ -8,7 +8,6 @@ import makeSpreadsheet from 'loot-core/src/mocks/spreadsheet';
import { Sidebar } from './sidebar';
import { Section } from '../guide/components';
import { generateAccount } from 'loot-core/src/mocks';
import { colors } from '../style';
function withState(state, render) {
const Component = lively(render, { getInitialState: () => state });

View file

@ -34,7 +34,6 @@ import { keys } from '../util/keys';
import {
AvoidRefocusScrollProvider,
useProperFocus,
focusElement
} from './useProperFocus';
import { useSelectedItems } from './useSelected';

View file

@ -1,4 +1,4 @@
import React, { useRef, useCallback } from 'react';
import { useRef, useCallback } from 'react';
export default function useResizeObserver(func) {
let observer = useRef(null);

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Add({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Bank({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Budget({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Delete({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function DownArrow({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function DragIos({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function ExpandArrow({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function LeftArrow({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function LeftArrow2({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function LeftArrow3({ width, height, style, color = "black", ...props }) {
return (

View file

@ -4,18 +4,9 @@ import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Logo({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Math({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Pencil({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,8 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Reports({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,8 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Polyline } from "mobile/node_modules/react-native-svg";
function RightArrow({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function RightArrow2({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Search({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, G, Path } from "mobile/node_modules/react-native-svg";
function Settings({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Add({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Merge({ width, height, style, color = "black", ...props }) {
return (

View file

@ -1,24 +1,7 @@
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from "react";
import {
Svg,
Circle,
Ellipse,
G,
LinearGradient,
RadialGradient,
Line,
Path,
Polygon,
Polyline,
Rect,
Symbol,
Text,
Use,
Defs,
Stop
} from "mobile/node_modules/react-native-svg";
import { Svg, Path } from "mobile/node_modules/react-native-svg";
function Split({ width, height, style, color = "black", ...props }) {
return (