Files
outline/shared/components/Notice.js

12 lines
197 B
JavaScript

// @flow
import styled from 'styled-components';
const Notice = styled.p`
background: #ffd95c;
color: hsla(46, 100%, 20%, 1);
padding: 10px;
border-radius: 4px;
`;
export default Notice;