Skip to content

Commit

Permalink
📚 update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
a-tokyo authored Feb 24, 2024
1 parent b38d7d4 commit 07c5dfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default MyComponent;
#### Component Props - can be used to customize Layout components
Container
```tsx
export declare interface ContainerProps extends ViewProps {
export declare interface ContainerProps extends React.ComponentProps<typeof View> {
/** Fluid Container */
fluid?: boolean;
/** No Padding */
Expand All @@ -128,7 +128,7 @@ export declare interface ContainerProps extends ViewProps {

Row
```tsx
export declare interface RowProps extends ViewProps {
export declare interface RowProps extends React.ComponentProps<typeof View> {
/** Gutter size -- [Bootstrap Gutters](https://getbootstrap.com/docs/5.0/layout/gutters/) */
gx?: 0 | 1 | 2 | 3 | 4 | 5;
/** Direction */
Expand All @@ -140,7 +140,7 @@ export declare interface RowProps extends ViewProps {

Col
```tsx
export declare interface ColProps extends ViewProps {
export declare interface ColProps extends React.ComponentProps<typeof View> {
/** xs size */
xs?: number | string;
/** sm size */
Expand Down

0 comments on commit 07c5dfb

Please sign in to comment.