I have a drawer design like this. I'm trying to create it, but I don't know how to design this kind of image. I am use Kendo react drawer
const CustomItem = (props: DrawerItemProps) => {
const { visible, ...others } = props;
let dataExpanded = props.expanded;
const arrowDir = dataExpanded ? chevronDownIcon : chevronRightIcon;
return visible === false ? null : (
<DrawerItem {...others}>
<SvgIcon icon={props.svgIcon} />
<span className={'k-item-text'}>{props.text}</span>
{dataExpanded !== undefined && (
<SvgIcon
icon={arrowDir}
style={{
marginLeft: 'auto',
}}
/>
)}
</DrawerItem>
);
};