UNPKG

@b-design/ui-layout

Version:

React component for Alibaba Cloud.

23 lines (22 loc) 373 B
import React from 'react'; /** * @public */ export interface ISiderProps { /** * 侧边栏的类名。 */ className?: string; /** * 侧边栏的样式。 */ style?: React.CSSProperties; /** * 侧边栏的内容。 */ children?: React.ReactNode; /** * 侧边栏的宽度。 */ width?: number | string; }