- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
15 lines
423 B
TypeScript
15 lines
423 B
TypeScript
import type { SerializedStyles } from '@emotion/utils'
|
|
import type { CSSInterpolation } from '@emotion/serialize'
|
|
import { serializeStyles } from '@emotion/serialize'
|
|
|
|
function css(
|
|
template: TemplateStringsArray,
|
|
...args: CSSInterpolation[]
|
|
): SerializedStyles
|
|
function css(...args: CSSInterpolation[]): SerializedStyles
|
|
function css(...args: CSSInterpolation[]) {
|
|
return serializeStyles(args)
|
|
}
|
|
|
|
export default css
|