import { useTheme } from '@emotion/react'; import React from 'react'; import { EBrandingColorsOptions, IColors } from '../../types/theme'; // import './index.scss'; import { StyledLoader } from './style'; export const Loader = ({ color = EBrandingColorsOptions.tx_white, width = 20, }: { color?: EBrandingColorsOptions; width?: number; }) => { const colors = useTheme(); return (
); };