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

14 lines
284 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> | undefined)[]
}) {
return <div style={s([a.flex, a.flex_col, ...cx])}>{children}</div>
}