fix: delete BackgroundImage old component

This commit is contained in:
RadoslavDimchev 2023-08-15 11:01:01 +03:00
parent 2e5c17dcf5
commit 93620f6cb2
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
import { Stack } from 'tamagui'
type BackgroundImageProps = {
background: string
}
const BackgroundImage = ({ background }: BackgroundImageProps) => {
return (
<Stack
style={{
boxShadow: 'inset 100px 0px 100px white',
width: '650px',
height: '100vh',
background: `url(${background}) no-repeat`,
}}
/>
)
}
export default BackgroundImage