Files
outline/app/components/UnreadBadge.tsx

13 lines
258 B
TypeScript

import styled from "styled-components";
import { s } from "@shared/styles";
export const UnreadBadge = styled.div`
width: 8px;
height: 8px;
background: ${s("accent")};
border-radius: 8px;
align-self: center;
position: absolute;
right: 4px;
`;