This commit is contained in:
2026-03-21 20:47:22 -04:00
parent ba919bbde4
commit 4d133994ab
55 changed files with 1901 additions and 264 deletions

View File

@@ -0,0 +1,15 @@
import { BaseIcon } from './BaseIcon';
interface DropdownIconProps {
size?: number;
className?: string;
disabled?: boolean;
}
export function DropdownIcon({ size = 24, className = '', disabled = false }: DropdownIconProps) {
return (
<BaseIcon size={size} className={className} disabled={disabled} viewBox="0 0 1792 1792">
<path d="M1408 704q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z" />
</BaseIcon>
);
}