#![doc = include_str!("README.md")]
#![doc(alias = "flexbox")]
use crate::prelude::build_plugin::*;
pub(crate) const PLUGIN: StaticPlugin = Plugin::Spacing(Spacing {
namespace: "basis",
prop: SingleProp("flex-basis"),
has_auto: Some(true),
has_full: Some(true),
..Spacing::default()
});
pub(crate) const PLUGIN_ARBITRARY: StaticPlugin = Plugin::Arbitrary(Arbitrary {
namespace: "basis",
prop: SingleProp("flex-basis"),
..Arbitrary::default()
});