import * as React from "react"; import { LoaderProps } from "./typings/Loader"; import { spinnerStyle } from "./styles/Loader.styles"; import { colors } from "pebble-shared"; import { cx } from "emotion"; const Loader: React.FunctionComponent = ({ color = colors.gray.darker, scale = 1, className }) => { const style = { backgroundColor: color }; return (
); }; export default Loader;