UNPKG

alouette

Version:

A modern, customizable design system built on top of NativeWind v5 with configurable defaults

16 lines 725 B
import type { ReactNode } from "react"; export interface RadioIndicatorProps { selected: boolean; disabled?: boolean; /** Set on a filled surface (accent, or the disabled fill), where the accent * dot and the outlined tokens have no contrast. */ onAccent?: boolean; /** Takes the row's press on the ring alone, for a row that does not move. */ withPressEffect?: boolean; } /** * Circle-dot indicator shared by Radio and RadioCard. Its hover/active colors * are driven by the `group` on the pressable row that contains it. */ export declare function RadioIndicator({ selected, disabled, onAccent, withPressEffect, }: RadioIndicatorProps): ReactNode; //# sourceMappingURL=RadioIndicator.d.ts.map