Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 373 Bytes

File metadata and controls

24 lines (21 loc) · 373 Bytes

aspectRatio

| Token             | Value  |
| ----------------- | ------ |
| aspectRatio.video | 16 / 9 |
import { aspectRatio } from 'solarwindcss/aspect-ratio.stylex'

function Example() {
  return (
    <div
      {...apply({
        width: '100%',
        aspectRatio: aspectRatio.video,
      })}
    >
      lorem ipsum
    </div>
  )
}