@redocly/graphql-docs
Version:
Redocly GraphQL docs
11 lines (10 loc) • 598 B
TypeScript
import type { CSSProperties } from 'react';
export interface ShelfIconProps {
className?: string;
float?: 'left' | 'right';
size?: string;
color?: string;
direction: 'left' | 'right' | 'up' | 'down';
style?: CSSProperties;
}
export declare const ShelfIcon: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit<ShelfIconProps, never> & Partial<Pick<ShelfIconProps, never>>> & string & Omit<({ className, style }: ShelfIconProps) => import("react/jsx-runtime").JSX.Element, keyof import("react").Component<any, {}, any>>;