Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change how we handle defaults (optimized or not) #6926

Merged
merged 22 commits into from
Jan 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix CS
  • Loading branch information
thecrypticace committed Jan 7, 2022
commit 16fc446c85cc2b057dd8561982bb70b5ffe7723a
4 changes: 1 addition & 3 deletions tests/util/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ import { css } from './strings'
* @param {string} [param0.defaultRingColor]
* @returns {string}
*/
export function defaults({
defaultRingColor = `rgb(59 130 246 / 0.5)`,
} = {}) {
export function defaults({ defaultRingColor = `rgb(59 130 246 / 0.5)` } = {}) {
return css`
*,
::before,
Expand Down