This commit is contained in:
JMARyA 2025-01-15 22:27:52 +01:00
parent a8a23db252
commit 7b12788a92
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -79,6 +79,15 @@ impl TextWidget {
self self
} }
/// Turn `Text` size to 3XL.
///
/// Adds the class `text-3xl`
#[must_use]
pub fn _3xl(mut self) -> Self {
self.size = "text-3xl".to_string();
self
}
/// Turn `Text` size to 2XL. /// Turn `Text` size to 2XL.
/// ///
/// Adds the class `text-2xl` /// Adds the class `text-2xl`