mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
14 lines
300 B
TypeScript
14 lines
300 B
TypeScript
// @ts-nocheck
|
|
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;
|
|
`;
|