diff --git a/src/__tests__/simple-mappings.spec.ts b/src/__tests__/simple-mappings.spec.ts index 7950116..6fa4614 100644 --- a/src/__tests__/simple-mappings.spec.ts +++ b/src/__tests__/simple-mappings.spec.ts @@ -92,6 +92,9 @@ describe(`simple style mappings`, () => { [`align-bottom`, { verticalAlign: `bottom` }], [`align-middle`, { verticalAlign: `middle` }], + [`cursor-auto`, { cursor: `auto` }], + [`cursor-pointer`, { cursor: `pointer` }], + [`box-border`, { boxSizing: `border-box` }], [`box-content`, { boxSizing: `content-box` }], diff --git a/src/styles.ts b/src/styles.ts index 873362a..59ca438 100644 --- a/src/styles.ts +++ b/src/styles.ts @@ -115,6 +115,9 @@ const defaultStyles: Array<[string, StyleIR]> = [ [`align-bottom`, complete({ verticalAlign: `bottom` })], [`align-middle`, complete({ verticalAlign: `middle` })], + [`cursor-auto`, complete({ cursor: `auto` })], + [`cursor-pointer`, complete({ cursor: `pointer` })], + [`box-border`, complete({ boxSizing: `border-box` })], [`box-content`, complete({ boxSizing: `content-box` })],