Skip to content
Snippets Groups Projects

geo intergation

Merged Leonardo Christino requested to merge feat/get_intergation into main
2 files
+ 4
4
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -11,7 +11,7 @@ type DropdownContainerProps = {
export const DropdownContainer = React.forwardRef<HTMLDivElement, DropdownContainerProps>(
({ children, className }, ref: React.ForwardedRef<HTMLDivElement>) => {
return (
<div className={`border-1 border-secondary-800 relative inline-block text-left ${className && className}`} ref={ref}>
<div className={`relative inline-block text-left ${className && className}`} ref={ref}>
{children}
</div>
);
@@ -32,7 +32,7 @@ export function DropdownButton({ title, onClick, size, disabled }: DropdownButto
return (
<>
<button
className={`inline-flex w-full justify-between items-center gap-x-1.5 rounded bg-light ${textSizeClass} ${paddingClass} text-secondary-900 shadow-sm ring-1 ring-inset ring-secondary-300 hover:bg-secondary-50 disabled:bg-secondary-100 disabled:cursor-not-allowed disabled:text-secondary-400`}
className={`inline-flex border w-full justify-between items-center gap-x-1.5 rounded bg-light ${textSizeClass} ${paddingClass} text-secondary-900 shadow-sm hover:bg-secondary-50 disabled:bg-secondary-100 disabled:cursor-not-allowed disabled:text-secondary-400`}
onClick={onClick}
disabled={disabled}
>
Loading