Skip to content

Commit

Permalink
Refactor some imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ap0k4 committed Jul 5, 2024
1 parent e958ca9 commit 0086147
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Button, Stack, XStack } from "tamagui";
import { Pencil, X, Tags, Layers } from '@tamagui/lucide-icons';
import { Tinted } from 'protolib'
import { Pencil, Tags, Layers } from '@tamagui/lucide-icons';
import { Tinted } from 'protolib/components/Tinted';
import { DeleteButton, FormGroup, getDefaultValue, iconStyle } from ".";

export const ArrayComp = ({ ele, elementDef, icon, path, arrData, getElement, setFormData, data, setData, mode, customFields, URLTransform }) => {
Expand Down
5 changes: 4 additions & 1 deletion packages/protolib/components/EditableObject/Element.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { Input, Stack, Switch, SizableText } from "tamagui";
import { API, Tinted, SelectList, SimpleSlider, DatePicker } from 'protolib'
import { Tinted } from 'protolib/components/Tinted';
import { SelectList } from 'protolib/components/SelectList';
import { SimpleSlider } from 'protolib/components/SimpleSlider';
import { DatePicker } from 'protolib/components/datepickers/dateParts';
import { InputColor } from "../InputColor";
import { SearchAndSelect } from "../SearchAndSelect";
import { FormElement } from ".";
Expand Down

0 comments on commit 0086147

Please sign in to comment.