#![doc = include_str!("README.md")]
#![doc(alias = "border")]
use crate::prelude::build_plugin::*;
pub(crate) const PLUGIN: StaticPlugin = Plugin::Number(Number {
namespace: "outline-offset",
prop: SingleProp("outline-offset"),
template: Some(SingleProp("{}px")),
..Number::default()
});
pub(crate) const PLUGIN_ARBITRARY: StaticPlugin = Plugin::Arbitrary(Arbitrary {
namespace: "outline-offset",
prop: SingleProp("outline-offset"),
disambiguate: Some(ArbitraryDisambiguate {
matched: &[CssType::Length],
separation: ArbitraryDisambiguateSeparation::None,
}),
..Arbitrary::default()
});