@framework-m/ui
v0.2.5
Published
Design system primitives for Framework M — presentational components with no business logic
Downloads
180
Maintainers
Readme
@framework-m/ui
Design system primitives for Framework M — presentational components with no business logic.
Installation
npm install @framework-m/ui
# With pnpm
pnpm add @framework-m/uiFeatures
- Tamagui Based: Built on top of
tamagui/corefor high-performance styling. - Themeable: Full support for light/dark modes and custom color systems.
- Type-Safe: 100% TypeScript with strict property checking.
- Headless Core: Clean separation from business logic and data providers.
Usage
import { Button, YStack } from "@framework-m/ui";
function MyComponent() {
return (
<YStack gap="$4">
<Button theme="blue">Click Me</Button>
</YStack>
);
}License
Apache-2.0
