@@ -186,31 +186,31 @@ fn box_prefixes() -> Vec<(&'static str, bool, Vec<TokenStream2>, &'static str)>
"size",
true,
vec![quote! {size.width}, quote! {size.height}],
- "todo!(docstring)",
+ "Sets the height of the element. [Docs](https://tailwindcss.com/docs/height)",
),
(
"min_w",
true,
vec![quote! { min_size.width }],
- "todo!(docstring)",
+ "Sets the minimum width of the element. [Docs](https://tailwindcss.com/docs/min-width)",
),
(
"min_h",
true,
vec![quote! { min_size.height }],
- "todo!(docstring)",
+ "Sets the minimum height of the element. [Docs](https://tailwindcss.com/docs/min-height)",
),
(
"max_w",
true,
vec![quote! { max_size.width }],
- "todo!(docstring)",
+ "Sets the maximum width of the element. [Docs](https://tailwindcss.com/docs/max-width)",
),
(
"max_h",
true,
vec![quote! { max_size.height }],
- "todo!(docstring)",
+ "Sets the maximum height of the element. [Docs](https://tailwindcss.com/docs/max-height)",
),
(
"m",