@catho/quantum-storybook-ui
Version:
A **Design System** is the complete set of design standards, documentation, and principles along with the toolkit (UI patterns and code components) to achieve those standards. Over time, these 'systems' are growing in popularity - a very popular one is [Q
56 lines (48 loc) • 1.18 kB
JSX
import React from 'react';
import PropTypes from 'prop-types';
import styled from 'styled-components';
import Title from '../Title';
const MainTitle = styled(Title)`
padding: 0;
margin: 0 0 25px 0;
`;
const Preview = styled.div`
padding: 60px 20px;
display: flex;
justify-content: center;
background: linear-gradient(
45deg,
#eff2f6 25%,
transparent 25%,
transparent 75%,
#eff2f6 75%,
#eff2f6 0
),
linear-gradient(
45deg,
#eff2f6 25%,
transparent 5%,
transparent 75%,
#eff2f6 75%,
#eff2f6 0
),
#fff;
background-position: 0 0, 10px 10px;
background-size: 20px 20px;
background-clip: border-box;
background-origin: padding-box;
`;
const LivePreview = ({ component: { type: Component }, state, onChange }) => (
<>
<MainTitle as="h2">Appearence</MainTitle>
<Preview>
<Component {...state} onChange={(e, data) => onChange(data)} />
</Preview>
</>
);
LivePreview.propTypes = {
state: PropTypes.instanceOf(Object).isRequired,
component: PropTypes.instanceOf(Object).isRequired,
onChange: PropTypes.func.isRequired,
};
export default LivePreview;