Skip to content

Commit

Permalink
Add option to select single resource in group selector
Browse files Browse the repository at this point in the history
  • Loading branch information
heisbrot committed Jan 24, 2025
1 parent 25be69e commit b20496e
Show file tree
Hide file tree
Showing 8 changed files with 433 additions and 128 deletions.
8 changes: 6 additions & 2 deletions src/components/DropdownInfoText.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import { cn } from "@utils/helpers";
import * as React from "react";

type Props = {
children: React.ReactNode;
className?: string;
};

export const DropdownInfoText = ({ children }: Props) => {
export const DropdownInfoText = ({ children, className }: Props) => {
return (
<div className={"text-center pt-2 mb-6 text-nb-gray-400"}>{children}</div>
<div className={cn("text-center pt-2 mb-6 text-nb-gray-400", className)}>
{children}
</div>
);
};
Loading

0 comments on commit b20496e

Please sign in to comment.