Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Nov 27, 2024
1 parent 73267e5 commit ba65b50
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { Icon } from "@trussworks/react-uswds";
import styles from "./customizeQuery.module.css";
import { GroupedValueSet } from "./customizeQueryUtils";
import CustomizeQueryCheckbox from "./vanityCheckbox/CustomizeQueryCheckbox";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ import styles from "./checkbox.module.css";
type VanityCheckboxProps = CheckboxProps & {
isHeader?: boolean;
};
/**
*
* @param root0
* @param root0.id
* @param root0.label
* @param root0.checked
* @param root0.onChange
* @param root0.className
* @param root0.isHeader
*/
const CustomizeQueryCheckbox: React.FC<VanityCheckboxProps> = ({
id,
label,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export type CheckboxProps = {
* @param root0.className Optional styling classes
* @param root0.onClick Event listener for checkbox click
* @param root0.checked Boolean indicating whether the checkbox is checked
* @param root0.onChange
* @returns A checkbox styled according to our design system
*/
const Checkbox: React.FC<CheckboxProps> = ({
Expand Down

0 comments on commit ba65b50

Please sign in to comment.