chore: add input for muted findings

This commit is contained in:
Pablo Lara
2024-08-14 16:29:52 +02:00
parent 11518a0806
commit ca3da473d7
3 changed files with 14 additions and 1 deletions
@@ -0,0 +1,10 @@
import { Checkbox } from "@nextui-org/react";
import React from "react";
export const CustomCheckboxMutedFindings = () => {
return (
<Checkbox className="lg:-mt-8" size="md" color="danger">
Include Muted Findings
</Checkbox>
);
};
+3 -1
View File
@@ -1,13 +1,15 @@
import { CustomAccountSelection } from "./CustomAccountSelection";
import { CustomCheckboxMutedFindings } from "./CustomCheckboxMutedFindings";
import { CustomDatePicker } from "./CustomDatePicker";
import { CustomSelectProvider } from "./CustomSelectProvider";
export const FilterControls = () => {
return (
<div className="grid grid-cols-1 md:grid-cols-4 gap-x-4 gap-y-4">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-x-4 gap-y-4">
<CustomSelectProvider />
<CustomDatePicker />
<CustomAccountSelection />
<CustomCheckboxMutedFindings />
</div>
);
};
+1
View File
@@ -1,4 +1,5 @@
export * from "../filters/CustomAccountSelection";
export * from "../filters/CustomCheckboxMutedFindings";
export * from "../filters/CustomDatePicker";
export * from "../filters/CustomProviderInputs";
export * from "../filters/CustomSelectProvider";