Skip to content

Commit

Permalink
docs(show-hide): updated props descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolovlazar committed Feb 14, 2022
1 parent eca771a commit 5c4e24d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/media-query/src/media-query.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ export interface ShowProps {
*/
breakpoint?: string
/**
* A value from the `breakpoints` section in the theme. Will render `children` from that breakpoint and below. Similar to `max-width`. Default breakpoint values: `sm`, `md`, `lg`, `xl`, `2xl`.
* A value from the `breakpoints` section in the theme. Will render `children` from that breakpoint and below. Default breakpoint values: `sm`, `md`, `lg`, `xl`, `2xl`.
*/
below?: string
/**
* A value from the `breakpoints` section in the theme. Will render `children` from that breakpoint and above. Similar to `min-width`. Default breakpoint values: `sm`, `md`, `lg`, `xl`, `2xl`.
* A value from the `breakpoints` section in the theme. Will render `children` from that breakpoint and above. Default breakpoint values: `sm`, `md`, `lg`, `xl`, `2xl`.
*/
above?: string
children?: React.ReactNode
Expand Down

0 comments on commit 5c4e24d

Please sign in to comment.