carbon-react
Version:
A library of reusable React components for easily building user interfaces.
9 lines (8 loc) • 350 B
TypeScript
import React from "react";
import { StyledImageProps } from "./image.style";
export declare const Image: {
({ alt, decorative, src, children, position, top, right, bottom, left, ...rest }: StyledImageProps): React.JSX.Element;
displayName: string;
};
export default Image;
export type { StyledImageProps as ImageProps } from "./image.style";