Welcome to React ASCII UI - the complete component library for building ASCII-style user interfaces in React.
React ASCII UI is a comprehensive collection of 50+ React components designed to create beautiful, retro-style interfaces that embrace the ASCII aesthetic. From basic UI elements to advanced data visualization, forms, layout systems, and even a full terminal emulator - everything you need for building professional ASCII-style applications.
import { AsciiButton, AsciiCard } from 'react-ascii-ui';
function App() {
return (
<AsciiCard title="Welcome">
<p>Hello ASCII world!</p>
<AsciiButton onClick={() => alert('Clicked!')}>
Click me
</AsciiButton>
</AsciiCard>
);
}