diff --git a/src/renderer/src/components/tag/tag.css.ts b/src/renderer/src/components/tag/tag.css.ts new file mode 100644 index 00000000..58d8028c --- /dev/null +++ b/src/renderer/src/components/tag/tag.css.ts @@ -0,0 +1,11 @@ +import { style } from "@vanilla-extract/css"; + +export const tagStyle = style({ + borderRadius: '3px', + border: '1px solid #FFFFFF33', + padding: '2px 5px', +}); + +export const tagText = style({ + fontSize: '11px', +}) diff --git a/src/renderer/src/components/tag/tag.tsx b/src/renderer/src/components/tag/tag.tsx new file mode 100644 index 00000000..fa7d0182 --- /dev/null +++ b/src/renderer/src/components/tag/tag.tsx @@ -0,0 +1,9 @@ +import * as styles from "./tag.css"; + +export function Tag({ children }: Readonly<{ children: React.ReactNode }>) { + return ( +