mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 09:01:19 +00:00
7 lines
243 B
TypeScript
7 lines
243 B
TypeScript
|
|
import { View, type ViewProps } from "react-native"
|
||
|
|
import tw from "twrnc"
|
||
|
|
|
||
|
|
export function FeedCard({ style, ...props }: ViewProps) {
|
||
|
|
return <View style={[tw`border border-stone-200 dark:border-stone-800 rounded-lg`, style]} {...props} />
|
||
|
|
}
|