feat(Paper): add Paper icon.

This commit is contained in:
a.bouhuolia
2022-03-19 23:08:41 +02:00
parent 379d033344
commit 8e7955bc7e
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import React from 'react';
import styled from 'styled-components';
export function Paper({ children, className }) {
return <PaperRoot className={className}>{children}</PaperRoot>;
}
const PaperRoot = styled.div`
border: 1px solid #d2dce2;
background: #fff;
padding: 10px;
`;

View File

@@ -103,6 +103,7 @@ export * from './Branches';
export * from './Warehouses';
export * from './Currencies';
export * from './FormTopbar'
export * from './Paper';
const Hint = FieldHint;