import { BottomSheet, useBottomSheet } from '@/components/ui/bottom-sheet'; import { Button } from '@/components/ui/button'; import { Text } from '@/components/ui/text'; import { View } from '@/components/ui/view'; import { useColor } from '@/hooks/useColor'; import React from 'react'; export function BottomSheetStyled() { const { isVisible, open, close } = useBottomSheet(); const accentColor = useColor('blue'); return ( Premium Feature This bottom sheet has custom styling including a colored border and accent-colored content areas. ); }