mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
8 lines
351 B
TypeScript
8 lines
351 B
TypeScript
import { Icon, type IconProps } from './Icon'
|
|
|
|
export const ExpandLess = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M213.65686 165.65686a8.00035 8.00035 0 0 1-11.31372 0L128 91.31371l-74.34314 74.34315a8.00035 8.00035 0 0 1-11.31372-11.31372l80-80a8.00035 8.00035 0 0 1 11.31372 0l80 80a8.00035 8.00035 0 0 1 0 11.31372Z" />
|
|
</Icon>
|
|
)
|