Skip to content

Commit

Permalink
fix: brackets with double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Viraj-10 committed Jul 31, 2024
1 parent 49cb183 commit 720dc20
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ A Badge component used with a menu adds a visual indicator, such as a badge, to
metaData={{
code: `
<Menu
placement={"top"}
placement="top"
trigger={({ ...triggerProps }) => {
return (
<Button {...triggerProps}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ Our Menu component supports dynamic disabling of menu items, enabling you to con
metaData={{
code: `
<Menu
placement={"top"}
placement="top"
disabledKeys={['Theme']}
trigger={({ ...triggerProps }) => {
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ function App(){
<HStack space="lg">
<Text size="md">$0</Text>
<Tooltip
placement={"top"}
placement="top"
trigger={(triggerProps) => {
return (
<Center w="$80">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ A tooltip component with an avatar is a user interface element that displays a s
<Box className="justify-center h-96">
<AvatarGroup className="flex-row">
<Tooltip
placement={"top"}
placement="top"
trigger={(triggerProps) => {
return (
<Avatar
Expand All @@ -534,15 +534,15 @@ A tooltip component with an avatar is a user interface element that displays a s
</TooltipContent>
</Tooltip>
<Avatar size="lg"
className={"border-outline-0 border-2 bg-emerald-600"} >
className="border-outline-0 border-2 bg-emerald-600" >
<AvatarFallbackText className="text-white">Sandeep Srivastva</AvatarFallbackText>
</Avatar>
<Avatar size="lg"
className={"border-outline-0 border-2 bg-cyan-600"} >
className="border-outline-0 border-2 bg-cyan-600" >
<AvatarFallbackText className="text-white">Arjun Kapoor</AvatarFallbackText>
</Avatar>
<Avatar size="lg"
className={"border-outline-0 border-2 bg-indigo-600"} >
className="border-outline-0 border-2 bg-indigo-600" >
<AvatarFallbackText className="text-white">Ritik Sharma </AvatarFallbackText>
</Avatar>
</AvatarGroup>
Expand Down Expand Up @@ -587,7 +587,7 @@ A tooltip component with an icon is a user interface element that provides conte
return (
<Box className="h-96 justify-center">
<Tooltip
placement={"top"}
placement="top"
trigger={(triggerProps) => {
return (
<Avatar size="md" {...triggerProps} className="bg-primary-600">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ A tooltip component with an avatar is a user interface element that displays a s
<Box h="$96" justifyContent="center">
<AvatarGroup flexDirection='row'>
<Tooltip
placement={"top"}
placement="top"
trigger={(triggerProps) => {
return (
<Avatar
Expand Down Expand Up @@ -619,7 +619,7 @@ A tooltip component with an icon is a user interface element that provides conte
return (
<Box h="$96" justifyContent="center">
<Tooltip
placement={"top"}
placement="top"
trigger={(triggerProps) => {
return (
<Avatar size="md" {...triggerProps} bg="$indigo600">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The most fundamental component for building a UI.
code: `
<View p="$4">
<Heading>
A component library for the{" "}
A component library for the
<Heading color="$emerald400">React Ecosystem</Heading>
</Heading>
<Text pt="$3">
Expand Down

0 comments on commit 720dc20

Please sign in to comment.