my-kaiqiuwang/src/components/ChangeBackground.tsx
2026-01-28 16:02:45 +09:00

7 lines
204 B
TypeScript

import { createGlobalStyle } from "styled-components";
export const ChangeBackground = createGlobalStyle<{ url?: string }>`
body:before {
${({ url }) => url ? `background: url(${url});` : ''}
}
`