mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-18 06:16:38 +00:00
perf: remove folders and indexes from components
This commit is contained in:
parent
4cae5c67a1
commit
fbcd120bfc
@ -8,4 +8,4 @@ const BackgroundImage = styled(Stack, {
|
||||
borderBottomRightRadius: "25px",
|
||||
});
|
||||
|
||||
export { BackgroundImage };
|
||||
export default BackgroundImage;
|
@ -1 +0,0 @@
|
||||
export { BackgroundImage } from "./BackgroundImage";
|
@ -1 +0,0 @@
|
||||
export { FormattedText } from "./FormattedText";
|
@ -1 +0,0 @@
|
||||
export { Icon } from "./Icon";
|
@ -1,5 +1,5 @@
|
||||
import { Icon } from "../Icon/Icon";
|
||||
import { ReactButton } from "../ReactButton";
|
||||
import { ReactButton } from "./ReactButton";
|
||||
|
||||
const IconButton = ({ icon, text, ...props }) => {
|
||||
return (
|
@ -1 +0,0 @@
|
||||
export { IconButton } from "./IconButton";
|
@ -1 +0,0 @@
|
||||
export { IconText } from "./IconText";
|
@ -1,6 +1,6 @@
|
||||
import { XStack } from "tamagui";
|
||||
import { Icon } from "../Icon";
|
||||
import { FormattedText } from "../FormattedText";
|
||||
import { Icon } from "./Icon";
|
||||
import { FormattedText } from "./FormattedText";
|
||||
|
||||
const InformationBox = ({ icon, textElements }) => {
|
||||
return (
|
@ -1 +0,0 @@
|
||||
export { InformationBox } from "./InformationBox";
|
@ -1,6 +1,6 @@
|
||||
import { XStack } from "tamagui";
|
||||
import { Tag } from "../Tag";
|
||||
import { Icon } from "../Icon";
|
||||
import { Tag } from "./Tag";
|
||||
import { Icon } from "./Icon";
|
||||
|
||||
const Logo = () => {
|
||||
return (
|
@ -1 +0,0 @@
|
||||
export { Logo } from "./Logo";
|
@ -1,5 +1,5 @@
|
||||
import { XStack, YStack, styled } from "tamagui";
|
||||
import { TopBar } from "../TopBar";
|
||||
import { TopBar } from "./TopBar";
|
||||
|
||||
const Background = styled("div", {
|
||||
display: "flex",
|
@ -1 +0,0 @@
|
||||
export { PageWrapper } from "./PageWrapper";
|
@ -1 +0,0 @@
|
||||
export { ReactButton } from "./ReactButton";
|
@ -1 +0,0 @@
|
||||
export { ShadowBox } from "./ShadowBox";
|
@ -1,6 +1,6 @@
|
||||
import { XStack, Stack, Text } from "tamagui";
|
||||
import "./TopBar.css";
|
||||
import { Icon } from "../Icon";
|
||||
import { Icon } from "./Icon";
|
||||
const Tab = ({ icon, text }) => {
|
||||
const styl = {
|
||||
border: "none",
|
@ -1 +0,0 @@
|
||||
export { Tag } from "./Tag";
|
@ -1,7 +1,7 @@
|
||||
import { XStack, YStack } from "tamagui";
|
||||
import { SubTitle } from "./SubTitle";
|
||||
import { Title } from "./Title";
|
||||
import { IconButton } from "../IconButton";
|
||||
import { IconButton } from "./IconButton";
|
||||
|
||||
const Titles = ({ title, subtitle }) => {
|
||||
return (
|
@ -1 +0,0 @@
|
||||
export { Titles } from "./Titles";
|
@ -14,10 +14,10 @@ import FullScreen from "/top-bar-icons/full-screen.png";
|
||||
import Bell from "/top-bar-icons/bell.png";
|
||||
|
||||
import "./TopBar.css";
|
||||
import { ReactButton } from "../ReactButton";
|
||||
import { ReactButton } from "./ReactButton";
|
||||
import { Button, Tabs, XStack } from "tamagui";
|
||||
import { Icon } from "../Icon";
|
||||
import { IconButton } from "../IconButton";
|
||||
import { Icon } from "./Icon";
|
||||
import { IconButton } from "./IconButton";
|
||||
import { Tab } from "./Tab";
|
||||
|
||||
const TopBar = () => {
|
@ -1 +0,0 @@
|
||||
export { TopBar } from "./TopBar";
|
Loading…
x
Reference in New Issue
Block a user