Files
metabuilder/icons/react/fakemui/UnfoldLess.tsx
2026-03-09 22:30:41 +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>
)