({
children,
isAuthorized,
}: {
children: React.ReactNode;
isAuthorized: boolean;
})
| 265 | /> |
| 266 | </div> |
| 267 | )} |
| 268 | <div |
| 269 | className="transition-all duration-300 flex justify-center w-full" |
| 270 | style={{ |
| 271 | marginLeft: isAuthorized ? (isCollapsed ? '55px' : '250px') : '0px', |
| 272 | }} |
| 273 | > |
| 274 | <div className="w-full">{children}</div> |
| 275 | </div> |
| 276 | </div> |
| 277 | ); |
| 278 | } |
nothing calls this directly
no test coverage detected