Skip to content

Instantly share code, notes, and snippets.

View RainNetworkLLC's full-sized avatar

RainNetworkLLC

View GitHub Profile
@RainNetworkLLC
RainNetworkLLC / RainButtontsx
Created October 7, 2025 13:03
Rain Network Core Component Templates
import React from 'react';
interface RainButtonProps {
children: React.ReactNode;
variant?: 'primary' | 'secondary' | 'accent';
className?: string;
onClick?: () => void;
}
const variantStyles = {