Files
metabuilder/fakemui/icons/UnfoldLess.tsx
2025-12-30 14:11:25 +00:00

10 lines
260 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const UnfoldLess = (props: IconProps) => (
<Icon {...props}>
<polyline points="128 88 168 48 88 48 128 88" />
<polyline points="128 168 168 208 88 208 128 168" />
</Icon>
)