mirror of
https://github.com/outline/outline.git
synced 2026-05-07 18:41:12 -05:00
10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
import styled from "styled-components";
|
|
import { s } from "@shared/styles";
|
|
|
|
const Empty = styled.p`
|
|
color: ${s("textTertiary")};
|
|
user-select: none;
|
|
`;
|
|
|
|
export default Empty;
|