Cayro ui

alpha

Magical experiences
for data-heavy applications

Enterprise applications UIs do not have to be borring.

Name
Phone
Company
Mariam Mckinney(08) 5175 5585Lacus Corp.
Matthew Grant(07) 7476 6446Bibendum Foundation
Jescie Hunter(01) 9884 6297Magna Nam LLP
Madison Bowler(01) 5698 2367Hosp Corp.
Grant Hunter(01) 5598 5561Magna Nam LLP
Name
Phone
Company
Mariam Mckinney(08) 5175 5585Lacus Corp.
Matthew Grant(07) 7476 6446Bibendum Foundation
Jescie Hunter(01) 9884 6297Magna Nam LLP
Madison Bowler(01) 5698 2367Hosp Corp.
Grant Hunter(01) 5598 5561Magna Nam LLP

Ease of use with
built-in accessibility

  • Screen reader support
  • Keyboard navigation support
  • Focus managment
Name
Phone
Company
Mariam Mckinney(08) 5175 5585Lacus Corp.
Matthew Grant(07) 7476 6446Bibendum Foundation
Jescie Hunter(01) 9884 6297Magna Nam LLP
Madison Bowler(01) 5698 2367Hosp Corp.
Grant Hunter(01) 5598 5561Magna Nam LLP

Spend less time on UI
and focus on the product

  • Built for data intensive applications
  • Functional yet enjoyable design
  • Focuses on ease of use

Built for developers by developers

Do not worry about component APIs, just place your components and they will fall neatly into their defined layouts. Cayro ui is designed with pre-defined layouts and handles complex layouts for you.
  • Full Typescript support
  • Real world examples
  • Extensive API documentation
1import { Button, Text, Stack, Input } from '@cayro/ui-core';
2import { LogInIcon } from '@cayro/ui-icons';
3
4export default function App() {
5 return (
6 <Stack direction="column">
7 <Input label="Username" />
8 <Input label="Password" />
9 <Button variant="primary">
10 <LogInIcon />
11 <Text>Sign in</Text>
12 </Button>
13 <Button>Reset password</Button>
14 </Stack>
15 )
16};