(props)
| 3 | |
| 4 | const hstackConfig = { |
| 5 | transform(props) { |
| 6 | const { justify, gap, ...rest } = props; |
| 7 | return { |
| 8 | display: "flex", |
| 9 | alignItems: "center", |
| 10 | justifyContent: justify, |
| 11 | gap, |
| 12 | flexDirection: "row", |
| 13 | ...rest |
| 14 | }; |
| 15 | }, |
| 16 | defaultValues:{gap:'8px'}} |
| 17 | |
| 18 | export const getHstackStyle = (styles = {}) => { |
nothing calls this directly
no outgoing calls
no test coverage detected