Files
bsky-social-app/bskyogcard/src/components/Box.tsx
T
2025-09-11 13:25:26 -05:00

14 lines
273 B
TypeScript

import React from 'react'
import {atoms as a, style as s} from '../theme/index.js'
export function Box({
children,
cx,
}: {
children?: React.ReactNode
cx?: Record<string, any>[]
}) {
return <div style={s([a.flex, a.flex_col, ...(cx ?? [])])}>{children}</div>
}