File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import * as React from 'react'
2+ import { Progress as BaseProgress } from '../ui/progress'
3+ import { cn } from '../../lib/utils'
4+
5+ export const Progress = ( { className, ...props } : React . ComponentProps < typeof BaseProgress > ) => {
6+ return < BaseProgress className = { cn ( 'h-4 bg-secondary' , className ) } { ...props } />
7+ }
Original file line number Diff line number Diff line change 11import type { StoryObj } from '@storybook/react-vite'
2- import { Progress } from '../../components/ui/ progress.tsx '
2+ import { Progress } from '../../components/progress'
33import { expect , within } from 'storybook/test'
44
55const meta = {
Original file line number Diff line number Diff line change 5454 --card-foreground : hsl (0 0% 98% );
5555 --popover : hsl (240 10% 4% );
5656 --popover-foreground : hsl (0 0% 98% );
57- --primary : hsl (209 100% 81 % );
57+ --primary : hsl (180 100% 50.59 % );
5858 --primary-foreground : hsl (240 10% 4% );
5959 --secondary : hsl (240 4% 16% );
6060 --secondary-foreground : hsl (0 0% 98% );
You can’t perform that action at this time.
0 commit comments