React version of the Fictoan framework
Fictoan is an intuitive framework for designers looking to code and rapidly iterate on UI.
- Simple, straight-forward React custom props, exactly like setting properties in Figma or Sketch.
- All attributes are intuitive and in plain English.
- Most attributes and values are the same across different components.
-
Read the Docs.
-
Install fictoan in your project
Using
pnpm
,yarn
ornpm
:pnpm add fictoan-react # or yarn add fictoan-react # or npm install fictoan-react
-
Start using!
import { Card } from "fictoan-react"; const MyComponent = props => { return ( <Card shape="rounded" bgColour="white" borderColour="slate-20" shadow="soft"> My awesome card </Card> ); }
Start development server for storybook
yarn storybook
Licensed under the MIT License.