mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-08 10:43:38 +00:00
10 lines
311 B
TypeScript
10 lines
311 B
TypeScript
import React from 'react';
|
|
export interface LayoutSidebarLeftProps extends React.SVGProps<SVGSVGElement> {
|
|
size?: number | string;
|
|
className?: string;
|
|
}
|
|
export declare const LayoutSidebarLeft: {
|
|
({ size, className, ...props }: LayoutSidebarLeftProps): React.JSX.Element;
|
|
displayName: string;
|
|
};
|