Files
2025-03-15 15:06:12 -07:00

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;