"whiteAlpha" | "blackAlpha" | "gray" | "red" | "orange" | "yellow" | "green" | "teal" | "blue" | "cyan" | "purple" | "pink" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram"
Table
Tables are used to organize and display data efficiently. It renders a <table>
element by default.
Import#
import {Table,Thead,Tbody,Tfoot,Tr,Th,Td,TableCaption,} from "@chakra-ui/react"
function Example() {const bg ="linear-gradient(127.09deg, rgba(24, 29, 60, 0.94) 19.41%, rgba(10, 14, 35, 0.49) 76.65%)"const textColor = "white"const bgColor = "gray.800"const nameColor = "white"return (<DarkMode><Flex flexDirection="column"><Boxdisplay="flex"flexDirection="column"width="100%"position="relative"minWidth="0px"wordWrap="break-word"backgroundClip="border-box"bg={bg}borderRadius="15px"p="1.5rem"my="1rem"><Box display="flex" width="100%" pt="28px" px="21px" p="0px"><Flex justifyContent="space-between" w="100%"><Flex direction="column" maxWidth="70%"><Textcolor={nameColor}fontSize="md"fontWeight="bold"mb="10px">Oliver Liam</Text><Text color="gray.400" fontSize="sm" fontWeight="semibold">Company Name:{" "}<Text as="span" color="gray.500">Viking Burrito</Text></Text><Text color="gray.400" fontSize="sm" fontWeight="semibold">Email Address:{" "}<Text as="span" color="gray.500">oliver@burrito.com</Text></Text><Text color="gray.400" fontSize="sm" fontWeight="semibold">VAT Number:{" "}<Text as="span" color="gray.500">FRB1235476</Text></Text></Flex><Flexdirection={{ sm: "column", md: "row" }}alignItems="flex-start"p={{ md: "1.5rem" }}><Buttonp="0px"bg="transparent"mb={{ sm: "10px", md: "0px" }}mr={{ md: "12px" }}><Flexcolor="red.500"cursor="pointer"alignItems="center"p="12px"><Icon as={FaTrashAlt} mr="4px" /><Text fontSize="sm" fontWeight="semibold">DELETE</Text></Flex></Button><Button p="0px" bg="transparent"><Flexcolor={textColor}cursor="pointer"alignItems="center"p="12px"><Icon as={FaPencilAlt} mr="4px" /><Text fontSize="sm" fontWeight="semibold">EDIT</Text></Flex></Button></Flex></Flex></Box></Box><Boxdisplay="flex"flexDirection="column"width="100%"position="relative"minWidth="0px"wordWrap="break-word"backgroundClip="border-box"bg={bg}borderRadius="15px"p="1.5rem"my="1rem"><Box display="flex" width="100%" pt="28px" px="21px" p="0px"><Flex justifyContent="space-between" w="100%"><Flex direction="column" maxWidth="70%"><Textcolor={nameColor}fontSize="md"fontWeight="bold"mb="10px">Lucas Harper</Text><Text color="gray.400" fontSize="sm" fontWeight="semibold">Company Name:{" "}<Text as="span" color="gray.500">Stone Tech Zone</Text></Text><Text color="gray.400" fontSize="sm" fontWeight="semibold">Email Address:{" "}<Text as="span" color="gray.500">lucas@stone-tech.com</Text></Text><Text color="gray.400" fontSize="sm" fontWeight="semibold">VAT Number:{" "}<Text as="span" color="gray.500">FRB1235476</Text></Text></Flex><Flexdirection={{ sm: "column", md: "row" }}alignItems="flex-start"p={{ md: "1.5rem" }}><Buttonp="0px"bg="transparent"mb={{ sm: "10px", md: "0px" }}mr={{ md: "12px" }}><Flexcolor="red.500"cursor="pointer"alignItems="center"p="12px"><Icon as={FaTrashAlt} mr="4px" /><Text fontSize="sm" fontWeight="semibold">DELETE</Text></Flex></Button><Button p="0px" bg="transparent"><Flexcolor={textColor}cursor="pointer"alignItems="center"p="12px"><Icon as={FaPencilAlt} mr="4px" /><Text fontSize="sm" fontWeight="semibold">EDIT</Text></Flex></Button></Flex></Flex></Box></Box><Boxdisplay="flex"flexDirection="column"width="100%"position="relative"minWidth="0px"wordWrap="break-word"backgroundClip="border-box"bg={bg}borderRadius="15px"p="1.5rem"my="1rem"><Box display="flex" width="100%" pt="28px" px="21px" p="0px"><Flex justifyContent="space-between" w="100%"><Flex direction="column" maxWidth="70%"><Textcolor={nameColor}fontSize="md"fontWeight="bold"mb="10px">Ethan James</Text><Text color="gray.400" fontSize="sm" fontWeight="semibold">Company Name:{" "}<Text as="span" color="gray.500">Fiber Notion</Text></Text><Text color="gray.400" fontSize="sm" fontWeight="semibold">Email Address:{" "}<Text as="span" color="gray.500">ethan@fiber.com</Text></Text><Text color="gray.400" fontSize="sm" fontWeight="semibold">VAT Number:{" "}<Text as="span" color="gray.500">FRB1235476</Text></Text></Flex><Flexdirection={{ sm: "column", md: "row" }}alignItems="flex-start"p={{ md: "1.5rem" }}><Buttonp="0px"bg="transparent"mb={{ sm: "10px", md: "0px" }}mr={{ md: "12px" }}><Flexcolor="red.500"cursor="pointer"alignItems="center"p="12px"><Icon as={FaTrashAlt} mr="4px" /><Text fontSize="sm" fontWeight="semibold">DELETE</Text></Flex></Button><Button p="0px" bg="transparent"><Flexcolor={textColor}cursor="pointer"alignItems="center"p="12px"><Icon as={FaPencilAlt} mr="4px" /><Text fontSize="sm" fontWeight="semibold">EDIT</Text></Flex></Button></Flex></Flex></Box></Box></Flex></DarkMode>)}
Import#
import BillingRow from "components/Tables/BillingRow"// You should also import some data for the tableimport { billingData } from "variables/general"
const textColor = "white"// This is how the "billingData" imported above should look likeconst billingData = [{name: "Oliver Liam",company: "Viking Burrito",number: "FRB1235476",},{name: "Lucas Harper",company: "Stone Tech Zone",number: "FRB1235476",},{name: "Ethan James",company: "Fiber Notion",number: "FRB1235476",},];<Flex direction="column">{billingData.map((row) => {return (<BillingRowname={row.name}company={row.company}email={row.email}number={row.number}/>)})}</Flex>
function Example() {const exampleBg = "gray.800"const bg = "gray.700"const textColor = "white"const bgColor = "gray.800"const nameColor = "white"return (<DarkMode><Table variant="simple" color={textColor}><Thead><Tr my=".8rem" ps="0px"><Th ps="0px" color="gray.400">Companies</Th><Th color="gray.400">Members</Th><Th color="gray.400">Budget</Th><Th color="gray.400">Completion</Th></Tr></Thead><Tbody><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><CheckIcon h={"24px"} w={"24px"} pr="5px" /><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Vision UI Version</Text></Flex></Td><Td><AvatarGroup size="sm"><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/></AvatarGroup></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">$14,000</Text></Td><Td><Flex direction="column"><TextfontSize="md"color="cyan.300"fontWeight="bold"pb=".2rem">60%</Text><ProgresscolorScheme={"cyan"}size="xs"value={60}borderRadius="15px"/></Flex></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><TimeIcon h={"24px"} w={"24px"} pr="5px" /><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Add Progress Track</Text></Flex></Td><Td><AvatarGroup size="sm"><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/></AvatarGroup></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">$3,000</Text></Td><Td><Flex direction="column"><TextfontSize="md"color="cyan.300"fontWeight="bold"pb=".2rem">10%</Text><ProgresscolorScheme={"cyan"}size="xs"value={10}borderRadius="15px"/></Flex></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><SunIcon h={"24px"} w={"24px"} pr="5px" /><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Fix Platform Errors</Text></Flex></Td><Td><AvatarGroup size="sm"><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/></AvatarGroup></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">Not set</Text></Td><Td><Flex direction="column"><TextfontSize="md"color="teal.200"fontWeight="bold"pb=".2rem">100%</Text><ProgresscolorScheme={"teal"}size="xs"value={100}borderRadius="15px"/></Flex></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><InfoIcon h={"24px"} w={"24px"} pr="5px" /><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Launch our Mobile App</Text></Flex></Td><Td><AvatarGroup size="sm"><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/></AvatarGroup></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">$32,000</Text></Td><Td><Flex direction="column"><TextfontSize="md"color="teal.200"fontWeight="bold"pb=".2rem">100%</Text><ProgresscolorScheme={"teal"}size="xs"value={100}borderRadius="15px"/></Flex></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><CalendarIcon h={"24px"} w={"24px"} pr="5px" /><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Add the New Pricing Page</Text></Flex></Td><Td><AvatarGroup size="sm"><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/></AvatarGroup></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">$400</Text></Td><Td><Flex direction="column"><TextfontSize="md"color="cyan.300"fontWeight="bold"pb=".2rem">25%</Text><ProgresscolorScheme={"cyan"}size="xs"value={25}borderRadius="15px"/></Flex></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><CheckIcon h={"24px"} w={"24px"} pr="5px" /><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Redesign New Online Shop</Text></Flex></Td><Td><AvatarGroup size="sm"><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/><Avatarname="avatar"src="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"_hover={{ zIndex: "3", cursor: "pointer" }}/></AvatarGroup></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">$7,600</Text></Td><Td><Flex direction="column"><TextfontSize="md"color="cyan.300"fontWeight="bold"pb=".2rem">40%</Text><ProgresscolorScheme={"cyan"}size="xs"value={40}borderRadius="15px"/></Flex></Td></Tr></Tbody></Table></DarkMode>)}
Import#
import DashboardTableRow from "components/Tables/DashboardTableRow"// You should also import some data for the tableimport { dashboardData } from "variables/general"
const textColor = "white"// This is how the "dashboardData" imported above should look likeconst dashboardTableData = [{logo: AdobexdLogo,name: "Vision UI Version",members: [avatar1, avatar2, avatar3, avatar4, avatar5],budget: "$14,000",progression: 60,},{logo: AtlassianLogo,name: "Add Progress Track",members: [avatar3, avatar2],budget: "$3,000",progression: 10,},{logo: SlackLogo,name: "Fix Platform Errors",members: [avatar10, avatar4],budget: "Not set",progression: 100,},{logo: SpotifyLogo,name: "Launch our Mobile App",members: [avatar2, avatar3, avatar7, avatar8],budget: "$32,000",progression: 100,},{logo: JiraLogo,name: "Add the New Pricing Page",members: [avatar10, avatar3, avatar7, avatar2, avatar8],budget: "$400",progression: 25,},{logo: InvisionLogo,name: "Redesign New Online Shop",members: [avatar9, avatar3, avatar2],budget: "$7,600",progression: 40,},];<Table variant="simple" color={textColor}><Thead><Tr my=".8rem" ps="0px"><Th ps="0px" color="gray.400">Companies</Th><Th color="gray.400">Members</Th><Th color="gray.400">Budget</Th><Th color="gray.400">Completion</Th></Tr></Thead><Tbody>{dashboardTableData.map((row) => {return (<DashboardTableRowname={row.name}logo={row.logo}members={row.members}budget={row.budget}progression={row.progression}/>)})}</Tbody></Table>
function Example() {const textColor = "gray.700"return (<DarkMode><Flex flexDirection="column"><Flex my={{ sm: "1rem", xl: "10px" }} alignItems="center"><Flex direction="column"><Text fontSize="md" color={textColor} fontWeight="bold">March, 01, 2020</Text><TextfontSize="sm"color="gray.400"fontWeight="semibold"mr="16px">#MS-415646</Text></Flex><Spacer /><Box mr="12px"><Text fontSize="md" color="gray.400" fontWeight="semibold">$180</Text></Box><Button p="0px" bg="transparent" variant="no-hover"><Flex alignItems="center" p="12px"><Icon as={FaFilePdf} w="20px" h="auto" mr="5px" /><Text fontSize="md" color={textColor} fontWeight="bold"></Text></Flex></Button></Flex><Flex my={{ sm: "1rem", xl: "10px" }} alignItems="center"><Flex direction="column"><Text fontSize="md" color={textColor} fontWeight="bold">February, 10, 2020</Text><TextfontSize="sm"color="gray.400"fontWeight="semibold"mr="16px">#RV-126749</Text></Flex><Spacer /><Box mr="12px"><Text fontSize="md" color="gray.400" fontWeight="semibold">$250</Text></Box><Button p="0px" bg="transparent" variant="no-hover"><Flex alignItems="center" p="12px"><Icon as={FaFilePdf} w="20px" h="auto" mr="5px" /><Text fontSize="md" color={textColor} fontWeight="bold"></Text></Flex></Button></Flex><Flex my={{ sm: "1rem", xl: "10px" }} alignItems="center"><Flex direction="column"><Text fontSize="md" color={textColor} fontWeight="bold">April, 05, 2020</Text><TextfontSize="sm"color="gray.400"fontWeight="semibold"mr="16px">#FB-212562</Text></Flex><Spacer /><Box mr="12px"><Text fontSize="md" color="gray.400" fontWeight="semibold">$560</Text></Box><Button p="0px" bg="transparent" variant="no-hover"><Flex alignItems="center" p="12px"><Icon as={FaFilePdf} w="20px" h="auto" mr="5px" /><Text fontSize="md" color={textColor} fontWeight="bold"></Text></Flex></Button></Flex><Flex my={{ sm: "1rem", xl: "10px" }} alignItems="center"><Flex direction="column"><Text fontSize="md" color={textColor} fontWeight="bold">June, 25, 2019</Text><TextfontSize="sm"color="gray.400"fontWeight="semibold"mr="16px">#QW-103578</Text></Flex><Spacer /><Box mr="12px"><Text fontSize="md" color="gray.400" fontWeight="semibold">$120</Text></Box><Button p="0px" bg="transparent" variant="no-hover"><Flex alignItems="center" p="12px"><Icon as={FaFilePdf} w="20px" h="auto" mr="5px" /><Text fontSize="md" color={textColor} fontWeight="bold"></Text></Flex></Button></Flex><Flex my={{ sm: "1rem", xl: "10px" }} alignItems="center"><Flex direction="column"><Text fontSize="md" color={textColor} fontWeight="bold">March, 01, 2019</Text><TextfontSize="sm"color="gray.400"fontWeight="semibold"mr="16px">#AR-803481</Text></Flex><Spacer /><Box mr="12px"><Text fontSize="md" color="gray.400" fontWeight="semibold">$300</Text></Box><Button p="0px" bg="transparent" variant="no-hover"><Flex alignItems="center" p="12px"><Icon as={FaFilePdf} w="20px" h="auto" mr="5px" /><Text fontSize="md" color={textColor} fontWeight="bold"></Text></Flex></Button></Flex></Flex></DarkMode>)}
Import#
import InvoicesRow from "components/Tables/InvoicesRow"// You should also import some data for the tableimport { invoicesData } from "variables/general"
const textColor = "white"// This is how the "dashboardData" imported above should look likeconst invoicesData = [{date: "March, 01, 2020",code: "#MS-415646",price: "$180",logo: FaFilePdf,format: "PDF",},{date: "February, 10, 2020",code: "#RV-126749",price: "$250",logo: FaFilePdf,format: "PDF",},{date: "April, 05, 2020",code: "#FB-212562",price: "$560",logo: FaFilePdf,format: "PDF",},{date: "June, 25, 2019",code: "#QW-103578",price: "$120",logo: FaFilePdf,format: "PDF",},{date: "March, 01, 2019",code: "#AR-803481",price: "$300",logo: FaFilePdf,format: "PDF",},];<Flex direction="column">{invoicesData.map((row) => {return (<InvoicesRowdate={row.date}code={row.code}price={row.price}logo={row.logo}format={row.format}/>)})}</Flex>
function Example() {const exampleBg = "gray.800"const bg = "gray.700"const textColor = "white"const bgColor = "gray.800"const nameColor = "white"return (<DarkMode><Table variant="simple" color={textColor}><Thead><Tr my=".8rem" pl="0px"><Th pl="0px" color="gray.400">Companies</Th><Th color="gray.400">Budget</Th><Th color="gray.400">Status</Th><Th color="gray.400">Completion</Th><Th></Th></Tr></Thead><Tbody><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><FlexalignItems="center"py=".8rem"minWidth="100%"flexWrap="nowrap"><Icon as={CheckIcon} h={"24px"} w={"24px"} mr="18px" /><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Vision UI Version</Text></Flex></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">$14,000</Text></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">Working</Text></Td><Td><Flex direction="column"><TextfontSize="md"color="teal.300"fontWeight="bold"pb=".2rem">60%</Text><ProgresscolorScheme={60 === 100 ? "teal" : "cyan"}size="xs"value={60}borderRadius="15px"/></Flex></Td><Td><Button p="0px" bg="transparent"><Icon as={FaEllipsisV} color="gray.400" cursor="pointer" /></Button></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><FlexalignItems="center"py=".8rem"minWidth="100%"flexWrap="nowrap"><Icon as={CheckIcon} h={"24px"} w={"24px"} mr="18px" /><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Add Progress Track</Text></Flex></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">$3,000</Text></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">Canceled</Text></Td><Td><Flex direction="column"><TextfontSize="md"color="teal.300"fontWeight="bold"pb=".2rem">60%</Text><ProgresscolorScheme={10 === 100 ? "teal" : "cyan"}size="xs"value={10}borderRadius="15px"/></Flex></Td><Td><Button p="0px" bg="transparent"><Icon as={FaEllipsisV} color="gray.400" cursor="pointer" /></Button></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><FlexalignItems="center"py=".8rem"minWidth="100%"flexWrap="nowrap"><Icon as={CheckIcon} h={"24px"} w={"24px"} mr="18px" /><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Fix Platform Errors</Text></Flex></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">Not set</Text></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">Done</Text></Td><Td><Flex direction="column"><TextfontSize="md"color="teal.300"fontWeight="bold"pb=".2rem">100%</Text><ProgresscolorScheme={100 === 100 ? "teal" : "cyan"}size="xs"value={100}borderRadius="15px"/></Flex></Td><Td><Button p="0px" bg="transparent"><Icon as={FaEllipsisV} color="gray.400" cursor="pointer" /></Button></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><FlexalignItems="center"py=".8rem"minWidth="100%"flexWrap="nowrap"><Icon as={CheckIcon} h={"24px"} w={"24px"} mr="18px" /><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Launch our Mobile App</Text></Flex></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">$32,000</Text></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">Done</Text></Td><Td><Flex direction="column"><TextfontSize="md"color="teal.300"fontWeight="bold"pb=".2rem">100%</Text><ProgresscolorScheme={100 === 100 ? "teal" : "cyan"}size="xs"value={100}borderRadius="15px"/></Flex></Td><Td><Button p="0px" bg="transparent"><Icon as={FaEllipsisV} color="gray.400" cursor="pointer" /></Button></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><FlexalignItems="center"py=".8rem"minWidth="100%"flexWrap="nowrap"><Icon as={CheckIcon} h={"24px"} w={"24px"} mr="18px" /><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Add the New Pricing Page</Text></Flex></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">$400</Text></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">Done</Text></Td><Td><Flex direction="column"><TextfontSize="md"color="teal.300"fontWeight="bold"pb=".2rem">40%</Text><ProgresscolorScheme={40 === 100 ? "teal" : "cyan"}size="xs"value={40}borderRadius="15px"/></Flex></Td><Td><Button p="0px" bg="transparent"><Icon as={FaEllipsisV} color="gray.400" cursor="pointer" /></Button></Td></Tr></Tbody></Table></DarkMode>)}
Import#
import TablesProjectRow from "components/Tables/TablesProjectRow"// You should also import some data for the tableimport { tablesProjectData } from "variables/general"
const textColor = "white"// This is how the "tablesProjectData" imported above should look likeconst tablesProjectData = [{logo: AdobexdLogo,name: "Vision UI Version",budget: "$14,000",status: "Working",progression: 60,},{logo: AtlassianLogo,name: "Add Progress Track",budget: "$3,000",status: "Canceled",progression: 10,},{logo: SlackLogo,name: "Fix Platform Errors",budget: "Not set",status: "Done",progression: 100,},{logo: SpotifyLogo,name: "Launch our Mobile App",budget: "$32,000",status: "Done",progression: 100,},{logo: JiraLogo,name: "Add the New Pricing Page",budget: "$400",status: "Working",progression: 25,},];<DarkMode><Table variant="simple" color={textColor}><Thead><Tr my=".8rem" pl="0px"><Th pl="0px" color="gray.400">Companies</Th><Th color="gray.400">Budget</Th><Th color="gray.400">Status</Th><Th color="gray.400">Completion</Th><Th></Th></Tr></Thead><Tbody>{tablesProjectData.map((row) => {return (<TablesProjectRowname={row.name}logo={row.logo}status={row.status}budget={row.budget}progression={row.progression}/>)})}</Tbody></Table></DarkMode>
function Example() {const exampleBg = "gray.800"const bg = "gray.700"const textColor = "white"const bgColor = "gray.800"const nameColor = "white"const bgStatus = "#1a202c"const colorStatus = "gray.400"return (<DarkMode><Table variant="simple" color={textColor}><Thead><Tr my=".8rem" pl="0px" color="gray.400"><Th pl="0px" color="gray.400">Author</Th><Th color="gray.400">Function</Th><Th color="gray.400">Status</Th><Th color="gray.400">Employed</Th><Th></Th></Tr></Thead><Tbody><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><Avatarsrc="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"w="40px"borderRadius="15px"mr="18px"/><Flex direction="column"><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Esthera Jackson</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">alexa@simmmple.com</Text></Flex></Flex></Td><Td><Flex direction="column"><Text fontSize="md" color={textColor} fontWeight="bold">Organization</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">Manager</Text></Flex></Td><Td><Flexbg={"Online" === "Online" ? "green.400" : bgStatus}w="66px"h="26px"align="center"justify="center"borderRadius="8px"><Textcolor={"Online" === "Online" ? "white" : colorStatus}fontWeight="bold"fontSize="md">Online</Text></Flex></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">14/06/21</Text></Td><Td><Button p="0px" bg="transparent" variant="no-hover"><TextfontSize="md"color="gray.400"fontWeight="bold"cursor="pointer">Edit</Text></Button></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><Avatarsrc="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"w="40px"borderRadius="15px"mr="18px"/><Flex direction="column"><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Alexa Liras</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">laurent@simmmple.com</Text></Flex></Flex></Td><Td><Flex direction="column"><Text fontSize="md" color={textColor} fontWeight="bold">Developer</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">Programmer</Text></Flex></Td><Td><Flexbg={"Offline" === "Online" ? "green.400" : bgStatus}w="66px"h="26px"align="center"justify="center"borderRadius="8px"><Textcolor={"Offline" === "Online" ? "white" : colorStatus}fontWeight="bold"fontSize="md">Offline</Text></Flex></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">12/05/2</Text></Td><Td><Button p="0px" bg="transparent" variant="no-hover"><TextfontSize="md"color="gray.400"fontWeight="bold"cursor="pointer">Edit</Text></Button></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><Avatarsrc="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"w="40px"borderRadius="15px"mr="18px"/><Flex direction="column"><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Laurent Michael</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">laurent@simmmple.com</Text></Flex></Flex></Td><Td><Flex direction="column"><Text fontSize="md" color={textColor} fontWeight="bold">Projects</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">Executive</Text></Flex></Td><Td><Flexbg={"Online" === "Online" ? "green.400" : bgStatus}w="66px"h="26px"align="center"justify="center"borderRadius="8px"><Textcolor={"Online" === "Online" ? "white" : colorStatus}fontWeight="bold"fontSize="md">Online</Text></Flex></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">07/06/21</Text></Td><Td><Button p="0px" bg="transparent" variant="no-hover"><TextfontSize="md"color="gray.400"fontWeight="bold"cursor="pointer">Edit</Text></Button></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><Avatarsrc="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"w="40px"borderRadius="15px"mr="18px"/><Flex direction="column"><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Freduardo Hill</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">freduardo@simmmple.com</Text></Flex></Flex></Td><Td><Flex direction="column"><Text fontSize="md" color={textColor} fontWeight="bold">Organization</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">Manager</Text></Flex></Td><Td><Flexbg={"Online" === "Online" ? "green.400" : bgStatus}w="66px"h="26px"align="center"justify="center"borderRadius="8px"><Textcolor={"Online" === "Online" ? "white" : colorStatus}fontWeight="bold"fontSize="md">Online</Text></Flex></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">14/11/21</Text></Td><Td><Button p="0px" bg="transparent" variant="no-hover"><TextfontSize="md"color="gray.400"fontWeight="bold"cursor="pointer">Edit</Text></Button></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><Avatarsrc="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"w="40px"borderRadius="15px"mr="18px"/><Flex direction="column"><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Daniel Thomas</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">daniel@simmmple.com</Text></Flex></Flex></Td><Td><Flex direction="column"><Text fontSize="md" color={textColor} fontWeight="bold">Developer</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">Programmer</Text></Flex></Td><Td><Flexbg={"Offline" === "Online" ? "green.400" : bgStatus}w="66px"h="26px"align="center"justify="center"borderRadius="8px"><Textcolor={"Offline" === "Online" ? "white" : colorStatus}fontWeight="bold"fontSize="md">Offline</Text></Flex></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">21/01/21</Text></Td><Td><Button p="0px" bg="transparent" variant="no-hover"><TextfontSize="md"color="gray.400"fontWeight="bold"cursor="pointer">Edit</Text></Button></Td></Tr><Tr><Td minWidth={{ sm: "250px" }} pl="0px"><Flex align="center" py=".8rem" minWidth="100%" flexWrap="nowrap"><Avatarsrc="https://demos.creative-tim.com/vision-ui-dashboard-react/static/media/avatar2.e81efbfa.png"w="40px"borderRadius="15px"mr="18px"/><Flex direction="column"><TextfontSize="md"color={textColor}fontWeight="bold"minWidth="100%">Mark Wilson</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">mark@simmmple.com</Text></Flex></Flex></Td><Td><Flex direction="column"><Text fontSize="md" color={textColor} fontWeight="bold">UI/UX Design</Text><Text fontSize="sm" color="gray.400" fontWeight="normal">Designer</Text></Flex></Td><Td><Flexbg={"Offline" === "Online" ? "green.400" : bgStatus}w="66px"h="26px"align="center"justify="center"borderRadius="8px"><Textcolor={"Offline" === "Online" ? "white" : colorStatus}fontWeight="bold"fontSize="md">Offline</Text></Flex></Td><Td><TextfontSize="md"color={textColor}fontWeight="bold"pb=".5rem">04/09/20</Text></Td><Td><Button p="0px" bg="transparent" variant="no-hover"><TextfontSize="md"color="gray.400"fontWeight="bold"cursor="pointer">Edit</Text></Button></Td></Tr></Tbody></Table></DarkMode>)}
Import#
import TablesTableRow from "components/Tables/TablesTableRow"// You should also import some data for the tableimport { tablesTableData } from "variables/general"
const textColor = "white"// This is how the "tablesTableData" imported above should look likeconst tablesTableData = [{logo: avatar1,name: "Esthera Jackson",subdomain: "Manager",domain: "Organization",status: "Online",date: "14/06/21",},{logo: avatar2,name: "Alexa Liras",subdomain: "Programmer",domain: "Developer",status: "Offline",date: "12/05/21",},{logo: avatar3,name: "Laurent Michael",subdomain: "Executive",domain: "Projects",status: "Online",date: "07/06/21",},{logo: avatar4,name: "Freduardo Hill",subdomain: "Manager",domain: "Organization",status: "Online",date: "14/11/21",},{logo: avatar5,name: "Daniel Thomas",subdomain: "Programmer",domain: "Developer",status: "Offline",date: "21/01/21",},{logo: avatar7,name: "Mark Wilson",subdomain: "Designer",domain: "UI/UX Design",status: "Offline",date: "04/09/20",},];<Table variant="simple" color={textColor}><Thead><Tr my=".8rem" pl="0px" color="gray.400"><Th pl="0px" color="gray.400">Author</Th><Th color="gray.400">Function</Th><Th color="gray.400">Status</Th><Th color="gray.400">Employed</Th><Th></Th></Tr></Thead><Tbody>{tablesTableData.map((row) => {return (<TablesTableRowname={row.name}logo={row.logo}email={row.email}subdomain={row.subdomain}domain={row.domain}status={row.status}date={row.date}/>)})}</Tbody></Table>
function Example() {const textColor = "white"return (<Flex direction="column" w="100%"><Flexdirection={{ sm: "column", lg: "row" }}justifyContent={{ sm: "center", lg: "space-between" }}alignItems={{ sm: "center" }}w="100%"my={{ md: "12px" }}><Textcolor={textColor}fontSize={{ sm: "lg", md: "xl", lg: "lg" }}fontWeight="bold">Your Transactions</Text><Flex alignItems="center"><Iconas={FaRegCalendarAlt}color="gray.400"fontSize="md"me="6px"></Icon><Text color="gray.400" fontSize="sm" fontWeight="semibold">23 - 30 March 2021</Text></Flex></Flex><Textcolor="gray.400"fontSize={{ sm: "sm", md: "md" }}fontWeight="semibold"my="12px">NEWEST</Text><Flex my="1rem" justifyContent="space-between"><Flex alignItems="center"><Boxmr="12px"borderRadius="50%"color={"-" === "+" ? "green.400" : "-" === "-" ? "red.400" : "gray.400"}border="1px solid"display="flex"alignItems="center"justifyContent="center"w="35px"h="35px"><Icon as={FaArrowDown} /></Box><Flex direction="column"><TextfontSize={{ sm: "md", md: "lg", lg: "md" }}color={textColor}fontWeight="bold">Netflix</Text><TextfontSize={{ sm: "xs", md: "sm", lg: "xs" }}color="gray.400"fontWeight="semibold">27 March 2021, at 12:30 PM</Text></Flex></Flex><Boxcolor={"-" === "+" ? "green.400" : "-" === "-" ? "red.400" : { textColor }}><Text fontSize={{ sm: "md", md: "lg", lg: "md" }} fontWeight="bold">- $2,500</Text></Box></Flex><Flex my="1rem" justifyContent="space-between"><Flex alignItems="center"><Boxmr="12px"borderRadius="50%"color={"+" === "+" ? "green.400" : "+" === "-" ? "red.400" : "gray.400"}border="1px solid"display="flex"alignItems="center"justifyContent="center"w="35px"h="35px"><Icon as={FaArrowUp} /></Box><Flex direction="column"><TextfontSize={{ sm: "md", md: "lg", lg: "md" }}color={textColor}fontWeight="bold">Apple</Text><TextfontSize={{ sm: "xs", md: "sm", lg: "xs" }}color="gray.400"fontWeight="semibold">27 March 2021, at 12:30 PM</Text></Flex></Flex><Boxcolor={"+" === "+" ? "green.400" : "+" === "-" ? "red.400" : { textColor }}><Text fontSize={{ sm: "md", md: "lg", lg: "md" }} fontWeight="bold">+ $2,500</Text></Box></Flex><Textcolor="gray.400"fontSize={{ sm: "sm", md: "md" }}fontWeight="semibold"my="12px">OLDER</Text><Flex my="1rem" justifyContent="space-between"><Flex alignItems="center"><Boxmr="12px"borderRadius="50%"color={"+" === "+" ? "green.400" : "+" === "-" ? "red.400" : "gray.400"}border="1px solid"display="flex"alignItems="center"justifyContent="center"w="35px"h="35px"><Icon as={FaArrowUp} /></Box><Flex direction="column"><TextfontSize={{ sm: "md", md: "lg", lg: "md" }}color={textColor}fontWeight="bold">Stripe</Text><TextfontSize={{ sm: "xs", md: "sm", lg: "xs" }}color="gray.400"fontWeight="semibold">26 March 2021, at 13:45 PM</Text></Flex></Flex><Boxcolor={"+" === "+" ? "green.400" : "+" === "-" ? "red.400" : { textColor }}><Text fontSize={{ sm: "md", md: "lg", lg: "md" }} fontWeight="bold">+ $800</Text></Box></Flex><Flex my="1rem" justifyContent="space-between"><Flex alignItems="center"><Boxmr="12px"borderRadius="50%"color={"+" === "+" ? "green.400" : "+" === "-" ? "red.400" : "gray.400"}border="1px solid"display="flex"alignItems="center"justifyContent="center"w="35px"h="35px"><Icon as={FaArrowUp} /></Box><Flex direction="column"><TextfontSize={{ sm: "md", md: "lg", lg: "md" }}color={textColor}fontWeight="bold">HubSpot</Text><TextfontSize={{ sm: "xs", md: "sm", lg: "xs" }}color="gray.400"fontWeight="semibold">26 March 2021, at 12:30 PM</Text></Flex></Flex><Boxcolor={"+" === "+" ? "green.400" : "+" === "-" ? "red.400" : { textColor }}><Text fontSize={{ sm: "md", md: "lg", lg: "md" }} fontWeight="bold">+ $1,700</Text></Box></Flex><Flex my="1rem" justifyContent="space-between"><Flex alignItems="center"><Boxmr="12px"borderRadius="50%"color={"P" === "+" ? "green.400" : "P" === "-" ? "red.400" : "gray.400"}border="1px solid"display="flex"alignItems="center"justifyContent="center"w="35px"h="35px"><Icon as={AiOutlineExclamation} /></Box><Flex direction="column"><TextfontSize={{ sm: "md", md: "lg", lg: "md" }}color={textColor}fontWeight="bold">Webflow</Text><TextfontSize={{ sm: "xs", md: "sm", lg: "xs" }}color="gray.400"fontWeight="semibold">26 March 2021, at 05:00 PM</Text></Flex></Flex><Boxcolor={"P" === "+" ? "green.400" : "P" === "-" ? "red.400" : { textColor }}><Text fontSize={{ sm: "md", md: "lg", lg: "md" }} fontWeight="bold">Pending</Text></Box></Flex><Flex my="1rem" justifyContent="space-between"><Flex alignItems="center"><Boxmr="12px"borderRadius="50%"color={"-" === "+" ? "green.400" : "-" === "-" ? "red.400" : "gray.400"}border="1px solid"display="flex"alignItems="center"justifyContent="center"w="35px"h="35px"><Icon as={FaArrowDown} /></Box><Flex direction="column"><TextfontSize={{ sm: "md", md: "lg", lg: "md" }}color={textColor}fontWeight="bold">Microsoft</Text><TextfontSize={{ sm: "xs", md: "sm", lg: "xs" }}color="gray.400"fontWeight="semibold">25 March 2021, at 16:30 PM</Text></Flex></Flex><Boxcolor={"-" === "+" ? "green.400" : "-" === "-" ? "red.400" : { textColor }}><Text fontSize={{ sm: "md", md: "lg", lg: "md" }} fontWeight="bold">- $987</Text></Box></Flex></Flex>)}
Import#
import TransactionsRow from "components/Tables/TransactionsRow"// You should also import some data for the tableimport { newestTransactions, olderTransactions } from "variables/general"
const textColor = "white"// This is how the data imported above should look likeexport const newestTransactions = [{name: "Netflix",date: "27 March 2021, at 12:30 PM",price: "- $2,500",logo: FaArrowDown,},{name: "Apple",date: "27 March 2021, at 12:30 PM",price: "+ $2,500",logo: FaArrowUp,},]export const olderTransactions = [{name: "Stripe",date: "26 March 2021, at 13:45 PM",price: "+ $800",logo: FaArrowUp,},{name: "HubSpot",date: "26 March 2021, at 12:30 PM",price: "+ $1,700",logo: FaArrowUp,},{name: "Webflow",date: "26 March 2021, at 05:00 PM",price: "Pending",logo: AiOutlineExclamation,},{name: "Microsoft",date: "25 March 2021, at 16:30 PM",price: "- $987",logo: FaArrowDown,},];<Flex direction="column" w="100%"><Flexdirection={{ sm: "column", lg: "row" }}justifyContent={{ sm: "center", lg: "space-between" }}alignItems={{ sm: "center" }}w="100%"my={{ md: "12px" }}><Textcolor={textColor}fontSize={{ sm: "lg", md: "xl", lg: "lg" }}fontWeight="bold">Your Transactions</Text><Flex alignItems="center"><Iconas={FaRegCalendarAlt}color="gray.400"fontSize="md"me="6px"></Icon><Text color="gray.400" fontSize="sm" fontWeight="semibold">23 - 30 March 2021</Text></Flex></Flex><Textcolor="gray.400"fontSize={{ sm: "sm", md: "md" }}fontWeight="semibold"my="12px">NEWEST</Text>{newestTransactions.map((row) => {return (<TransactionRowname={row.name}logo={row.logo}date={row.date}price={row.price}/>)})}<Textcolor="gray.400"fontSize={{ sm: "sm", md: "md" }}fontWeight="semibold"my="12px">OLDER</Text>{olderTransactions.map((row) => {return (<TransactionRowname={row.name}logo={row.logo}date={row.date}price={row.price}/>)})}</Flex>
Props#
Table#
colorScheme
colorScheme
Type
Default
"gray"
size
size
Type
"sm" | "md" | "lg"
Default
"md"
variant
variant
Type
"unstyled" | "simple" | "striped"
Default
"simple"
Td#
isNumeric
isNumeric
Description
Aligns the cell content to the right
Type
boolean
Th#
isNumeric
isNumeric
Description
Aligns the cell content to the right
Type
boolean
TableCaption#
placement
placement
Description
The placement of the table caption. This sets the `caption-side` CSS attribute.
Type
"bottom" | "top"
Default
"bottom"
© 2021, Made with ❤️ by Creative Tim & Simmmple for a better web