import { type Handle } from '@remix-run/ui' import { css, on } from '@remix-run/ui' import { spring } from '@remix-run/ui/animation' export function AspectRatio(handle: Handle) { let aspectRatio = 1 let width = 100 return () => (
) } const rangeInputCss = { flex: 1, accentColor: '#8df0cc', cursor: 'pointer', } as const