aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/PrecheckBox.tsx
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2025-08-08 23:31:21 +0100
committerGravatar Joe Banks <[email protected]>2025-08-08 23:31:21 +0100
commit8d656e056eb61b64c237ca8ece9482a6258e03f1 (patch)
tree655880609c2c9a08c857b3b5fac00123c9137c91 /src/components/PrecheckBox.tsx
parentPass precheck data down tree for submission (diff)
Eslint on new changes
Diffstat (limited to 'src/components/PrecheckBox.tsx')
-rw-r--r--src/components/PrecheckBox.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/PrecheckBox.tsx b/src/components/PrecheckBox.tsx
index 75a48eb..c45ffc2 100644
--- a/src/components/PrecheckBox.tsx
+++ b/src/components/PrecheckBox.tsx
@@ -1,5 +1,5 @@
/** @jsx jsx */
-import { css, jsx } from "@emotion/react";
+import { jsx } from "@emotion/react";
import styled from "@emotion/styled";
interface PrecheckProps {
@@ -11,10 +11,10 @@ const BACKGROUNDS = {
secondary: "#7e7c7cff",
warning: "#a09b53ff",
danger: "#b4747aff"
-}
+};
interface PrecheckBoxProps {
- severity: PrecheckProps['severity']
+ severity: PrecheckProps["severity"]
}