#Column

import Column from "@poodle/ui/Column";

Please check columns document to see the example usage.

#Theming

Please check theming component document here.

export type ColumnStyleKeys = "root"
export interface ColumnThemeConfig
extends StandardThemeConfig<ColumnStyleKeys, ColumnProps> {}

#Props

#Local Props

NameTypeDescription
childrenReact.ReactNode
colWidthResponsiveProp<string \| number>Set column width. If we want the column width equal to content set colWidth="content"

#Full Props

export interface ColumnProps
extends BoxProps,
StandardComponentProps,
LocalColumnProps {}