-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: 💄 Correção do background do Loading Componente
- Loading branch information
Wellington Braga
committed
Mar 14, 2024
1 parent
8d9eeed
commit 38262f2
Showing
10 changed files
with
893 additions
and
893 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
import { LoginMobile, Logo } from "@/screens/login/styles"; | ||
import Image from "next/image"; | ||
|
||
export default function Loading() { | ||
// You can add any UI inside Loading, including a Skeleton. | ||
return ( | ||
<LoginMobile> | ||
<Logo> | ||
<Image | ||
width={120} | ||
height={120} | ||
alt="Services logo" | ||
src="/android-chrome-512x512.png" | ||
/> | ||
</Logo> | ||
</LoginMobile> | ||
); | ||
} | ||
"use client"; | ||
|
||
import { PageContainer } from "@/styles"; | ||
import Image from "next/image"; | ||
|
||
export default function Loading() { | ||
// You can add any UI inside Loading, including a Skeleton. | ||
return ( | ||
<PageContainer> | ||
<Image | ||
width={120} | ||
height={120} | ||
alt="Services logo" | ||
src="/Icon.png" | ||
/> | ||
</PageContainer> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { IconProps } from ".."; | ||
|
||
export const EmptyBox = ({ | ||
color, | ||
height = 32, | ||
width = 32, | ||
size | ||
}: IconProps) => { | ||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
x="0px" | ||
y="0px" | ||
width={size || width} | ||
height={size || height} | ||
viewBox="0 0 24 24"> | ||
<path d="M 5.75 3 A 1.0001 1.0001 0 0 0 4.8867188 3.4960938 L 3.1425781 6.4863281 L 3.1367188 6.4960938 L 0.14257812 11.486328 L 1.8574219 12.513672 L 3 10.609375 L 3 19 C 3 20.093063 3.9069372 21 5 21 L 19 21 C 20.093063 21 21 20.093063 21 19 L 21 10.609375 L 22.142578 12.513672 L 23.857422 11.486328 L 20.876953 6.5214844 A 1.0001 1.0001 0 0 0 20.863281 6.4960938 L 19.113281 3.4960938 A 1.0001 1.0001 0 0 0 18.25 3 L 5.75 3 z M 6.3242188 5 L 17.675781 5 L 18.841797 7 L 5.1582031 7 L 6.3242188 5 z M 5 9 L 19 9 L 19 19 L 5 19 L 5 9 z M 9 11 L 9 13 L 15 13 L 15 11 L 9 11 z"></path> | ||
</svg> | ||
); | ||
}; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.