Co-authored-by: Satish Gandham <satish@appsmith.com> Co-authored-by: Abhinav Jha <abhinav@appsmith.com>
11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
import React from "react";
|
|
import styled from "styled-components";
|
|
|
|
const StyledLoader = styled.div``;
|
|
|
|
export function Loader() {
|
|
return <StyledLoader className="pace" />;
|
|
}
|
|
|
|
export default Loader;
|