UNPKG

@t1mmen/srtd

Version:

Supabase Repeatable Template Definitions (srtd): 🪄 Live-reloading SQL templates for Supabase DX. Make your database changes reviewable and migrations maintainable! 🚀

14 lines • 413 B
// src/components/watch.tsx import { Badge } from '@inkjs/ui'; import { Box } from 'ink'; import React from 'react'; export function StatBadge({ label, value, color, }) { return (React.createElement(Box, { marginRight: 1 }, React.createElement(Badge, { color: color }, ' ', label, ": ", value, ' '))); } //# sourceMappingURL=StatBadge.js.map