1use swc_core::ecma::ast::Expr; 2 3#[derive(Debug, Clone)] 4pub struct DynamicStyle { 5 pub expression: Expr, 6 pub key: String, 7 pub var_name: String, 8 pub path: String, 9}