11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
import { h } from 'preact';
|
|
import b, { Mix } from 'bem-react-helper';
|
|
|
|
type Props = {
|
|
mix?: Mix;
|
|
};
|
|
|
|
export function Preloader({ mix }: Props) {
|
|
return <div className={b('preloader', { mix })} />;
|
|
}
|