@elvora/react-native
v1.0.0-rc.2
Published
Elvora UI components for React Native — same headless API as the web adapters, native rendering, WCAG 2.1 AA.
Maintainers
Readme
@elvora/react-native
Elvora UI components for React Native — same headless API as the web adapters, rendered with native
View/Text/Pressable.
Install
pnpm add @elvora/react-native @elvora/themes react-native-svgPeer dependencies: react, react-native, and react-native-svg.
Quick start
import { ElvoraProvider, Button, Card, Input } from '@elvora/react-native';
import { defaultTheme } from '@elvora/themes';
export default function App() {
return (
<ElvoraProvider theme={defaultTheme}>
<Card>
<Input placeholder="Type something" />
<Button onPress={() => {}}>Save</Button>
</Card>
</ElvoraProvider>
);
}What's included
The full Phase 1–7 component surface — primitives, layout, feedback,
navigation, data entry, data display, advanced, and pro components.
Components rely on react-native-svg for icons (peer dep; mark as
optional in your app if you don't use icons).
License
MIT
