···55import 'package:sparksocial/src/core/design_system/tokens/gradients.dart';
66import 'package:sparksocial/src/core/design_system/tokens/typography.dart';
7788+/// A general-purpose button with gradient background that can display any text.
99+///
1010+/// This button features an accent gradient background with a glass stroke border.
1111+/// It's commonly used in authentication screens and forms, but can be used
1212+/// anywhere a prominent action button is needed.
813class LongButton extends StatelessWidget {
1414+ /// The text to display on the button
915 final String label;
1616+1717+ /// Callback when the button is pressed
1018 final VoidCallback? onPressed;
11191220 const LongButton({