Files
outline/app/components/Empty.js
T
2020-08-08 12:43:00 -07:00

9 lines
147 B
JavaScript

// @flow
import styled from "styled-components";
const Empty = styled.p`
color: ${props => props.theme.textTertiary};
`;
export default Empty;