carbon-react
Version:
A library of reusable React components for easily building user interfaces.
14 lines (13 loc) • 514 B
TypeScript
import { Shapes } from "./preview.component";
declare const StyledPreview: import("styled-components").StyledComponent<"div", any, {
theme: object;
}, "theme">;
interface StyledPreviewPlaceholderProps {
height?: string;
width?: string;
shape: Shapes;
disableAnimation?: boolean;
isLastLine: boolean;
}
declare const StyledPreviewPlaceholder: import("styled-components").StyledComponent<"span", any, StyledPreviewPlaceholderProps, never>;
export { StyledPreview, StyledPreviewPlaceholder };