UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

32 lines (29 loc) 1.14 kB
import React from "react"; import { principleClarity, principleSpeed, principleIntuative, principleDelight } from "../assets"; import { Principle } from "../../welcome/principle/principle"; import "../../welcome/principles/principles.scss"; const BASE_CLASS = "monday-storybook-principles"; export const PrinciplesAccesability = () => ( <div className={BASE_CLASS}> <Principle imgSrc={principleClarity} title="Clear" description="Create clear information and design components that will be easy to perceive to all users' senses." /> <Principle imgSrc={principleSpeed} title="Operable" description="Design components and elements that users would be able to use with a keyboard or a keyboard equivalent." /> <Principle imgSrc={principleIntuative} title="Understandable" description="Use simple language and design an easy to use interface that can be understood by all users." /> <Principle imgSrc={principleDelight} title="Robust" description="Create robust content that can accommodate a wide variety of users." /> </div> );