feat: modify table design
This commit is contained in:
@@ -23,14 +23,20 @@ export function TableSearchInput({
|
||||
className,
|
||||
}: TableSearchInputProps) {
|
||||
return (
|
||||
<InputGroup className={cn('md:max-w-xs', className)}>
|
||||
<InputGroup
|
||||
className={cn(
|
||||
'h-9 border-border bg-background shadow-none md:max-w-xs',
|
||||
className,
|
||||
)}
|
||||
>
|
||||
<InputGroupAddon>
|
||||
<Search />
|
||||
<Search className="size-4" />
|
||||
</InputGroupAddon>
|
||||
<InputGroupInput
|
||||
value={value}
|
||||
onChange={(event) => onChange(event.target.value)}
|
||||
placeholder={placeholder}
|
||||
className="placeholder:text-muted-foreground/70"
|
||||
/>
|
||||
</InputGroup>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user