mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
10 lines
184 B
TypeScript
10 lines
184 B
TypeScript
import styled from "styled-components";
|
|
import Text from "~/components/Text";
|
|
|
|
const Empty = styled(Text).attrs({
|
|
type: "tertiary",
|
|
selectable: false,
|
|
})``;
|
|
|
|
export default Empty;
|