* Big bulk commit * Switch and settings toggle * Popover Kbar Timezones * Image Uploader * Fix core export * Meta * Swatch * Remove shell * Fix shell imports * Moved ShellSubHeading component to UI, to prevent recursive imports from shell component * Removed shell from ui ts config since shell doesnt have a dependency on shell anymore. Co-authored-by: Jeroen Reumkens <hello@jeroenreumkens.nl> Co-authored-by: Omar López <zomars@me.com>
11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
/**
|
|
* @deprecated Use custom Skeletons instead
|
|
**/
|
|
export default function Loader() {
|
|
return (
|
|
<div className="loader border-brand dark:border-darkmodebrand">
|
|
<span className="loader-inner bg-brand dark:bg-darkmodebrand" />
|
|
</div>
|
|
);
|
|
}
|