* Start by moving what we have to _templates * WIP * WIP * Add create/edit/delete template commands * Type fixes cli Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: zomars <zomars@me.com>
12 lines
239 B
TypeScript
12 lines
239 B
TypeScript
import { Box, Text } from "ink";
|
|
import React from "react";
|
|
|
|
export default function Label({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<Box>
|
|
<Text underline>{children}</Text>
|
|
<Text>: </Text>
|
|
</Box>
|
|
);
|
|
}
|