dumi-theme-lobehub
Version:
dumi-theme-lobehub is a documentation site theme package designed for dumi2. It provides a more beautiful and user-friendly development and reading experience based on @lobehub/ui
20 lines • 797 B
JavaScript
import { Features } from '@lobehub/ui/awesome';
import { MoonStar, Palette, Zap } from 'lucide-react';
import { jsx as _jsx } from "react/jsx-runtime";
export default (function () {
return /*#__PURE__*/_jsx(Features, {
items: [{
description: 'Provides a simple way to customize default themes, you can change the colors, fonts, breakpoints and everything you need.',
icon: Palette,
title: 'Themeable'
}, {
description: 'voids unnecessary styles props at runtime, making it more performant than other UI libraries.',
icon: Zap,
title: 'Fast'
}, {
description: 'Automatic dark mode recognition, LobeUI automatically changes the theme when detects HTML theme prop changes.',
icon: MoonStar,
title: 'Light & Dark UI'
}]
});
});