Co-authored-by: Satish Gandham <satish@appsmith.com> Co-authored-by: Abhinav Jha <abhinav@appsmith.com>
16 lines
306 B
TypeScript
16 lines
306 B
TypeScript
import React from "react";
|
|
import { Classes } from "@blueprintjs/core";
|
|
import styled from "styled-components";
|
|
|
|
const StyledDiv = styled.div`
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
`;
|
|
|
|
export function Skeleton() {
|
|
return <StyledDiv className={Classes.SKELETON} />;
|
|
}
|
|
|
|
export default Skeleton;
|