--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/range/issue-7082.js --- # Input ```js export const Button = styled.button` color: blue; `; ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1,3 +1,3 @@ export const Button = styled.button` - color: blue; +color: blue; `; ``` # Output ```js export const Button = styled.button` color: blue; `; ```