import { radius, spacing } from "../../../core/design-system/index.js"; import { Container } from "./basic.js"; import { Text } from "./text.js"; function Badge(props: { text: string }) { return ( {props.text} ); } export function LastUsedBadge() { return (
); } export const LAST_USED_BADGE_VERTICAL_RESERVED_SPACE = 12;