a95a286c59
Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
433 B
TypeScript
12 lines
433 B
TypeScript
import IconListViewGripRaw from '@assets/misc/list-view-grip.svg?react';
|
|
import { type IconComponentProps } from '@ui/display/icon/types/IconComponent';
|
|
|
|
type IconListViewGripProps = Pick<IconComponentProps, 'size' | 'stroke'>;
|
|
|
|
export const IconListViewGrip = (props: IconListViewGripProps) => {
|
|
const width = props.size ?? 8;
|
|
const height = props.size ?? 32;
|
|
|
|
return <IconListViewGripRaw height={height} width={width} />;
|
|
};
|