fix: delete BackgroundImage old component
This commit is contained in:
parent
2e5c17dcf5
commit
93620f6cb2
|
@ -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
|
Loading…
Reference in New Issue