A streamlined UI component library built with React and Tailwind CSS, focused on ease of use and developer experience.
- Global Theming: Built on Tailwind CSS with easily customizable central configuration
- Custom CLI: Simplified component installation and management
- Simplified Component Structure: Single-file components with inline Tailwind styling
- Animated Components: Built-in Framer Motion animations that can be enabled/disabled
- Automated Dependency Management: Handles peer dependencies automatically
npm install s2-ui
Initialize your project:
npx s2-ui init
This will guide you through setting up your project configuration, including:
- Component registry location
- Tailwind configuration
- Theme preferences
- Animation settings
npx s2-ui add <component-name>
This will:
- Install the component from npm (e.g.,
@s2-ui/button
) - Install any required peer dependencies
- Add an import to your component registry
The project includes an example app to showcase and test components:
# Install dependencies
npm install
npm run example:install
# Run both the library in watch mode and the example app
npm run dev:all
# Or run only the example app (if the library is already built)
npm run example:dev
Then open http://localhost:5173 in your browser to see the components in action.
npm run build
npm run cli -- <command>
For example:
npm run cli -- init
npm run cli -- add button
Each component should be defined in a single file using Tailwind CSS for styling:
// Example Button.tsx with animation support
import React from 'react';
import { motion } from 'framer-motion';
import { useAnimationContext } from 's2-ui/animation';
export interface ButtonProps {
variant?: 'primary' | 'secondary';
size?: 'sm' | 'md' | 'lg';
children: React.ReactNode;
onClick?: () => void;
animation?: string; // Optional animation override
}
export const Button: React.FC<ButtonProps> = ({
variant = 'primary',
size = 'md',
children,
onClick,
animation,
}) => {
const { enabled, defaultAnimation, animationVariants } = useAnimationContext();
// Get specified animation or default
const selectedAnimation = animation || defaultAnimation;
const animationVariant = animationVariants[selectedAnimation];
const baseStyles = 'font-medium rounded transition-colors';
const variantStyles = {
primary: 'bg-blue-500 text-white hover:bg-blue-600',
secondary: 'bg-gray-200 text-gray-800 hover:bg-gray-300',
};
const sizeStyles = {
sm: 'py-1 px-2 text-sm',
md: 'py-2 px-4 text-base',
lg: 'py-3 px-6 text-lg',
};
// If animations are disabled, render a regular button
if (!enabled) {
return (
<button
className={`${baseStyles} ${variantStyles[variant]} ${sizeStyles[size]}`}
onClick={onClick}
>
{children}
</button>
);
}
// Otherwise, use animated button
return (
<motion.button
className={`${baseStyles} ${variantStyles[variant]} ${sizeStyles[size]}`}
onClick={onClick}
initial="hidden"
animate="visible"
variants={animationVariant}
whileHover={{ scale: 1.02 }}
whileTap={{ scale: 0.98 }}
>
{children}
</motion.button>
);
};
S2-UI comes with built-in animation support using Framer Motion. During the initialization process, you can:
- Enable/disable animations globally
- Choose a default animation style
- Set the default animation duration
Available animation styles:
fadeIn
: Simple fade inslideInUp
: Slide up from belowslideInDown
: Slide down from aboveslideInLeft
: Slide in from the leftslideInRight
: Slide in from the rightscale
: Scale up from smaller sizerotate
: Rotate in with a slight anglebounce
: Bounce in with a spring effect
You can override the animation for individual components:
<Button animation="scale">Click me</Button>
<Card animation="slideInUp">Content</Card>
The S2-UI configuration file (s2-ui.config.js
) manages:
- Component registry path
- Tailwind theme customization
- Animation settings
- Package preferences
ISC