Files
outline/app/components/Empty.ts
2023-04-07 19:43:34 -07:00

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;