10 lines
312 B
TypeScript
10 lines
312 B
TypeScript
import React from 'react';
|
|
import { CardStack, CardStackProps } from '@/components/cardStack/CardStack';
|
|
|
|
type MetricCardTenProps = Omit<CardStackProps, 'titleSegments'>;
|
|
|
|
export const MetricCardTen: React.FC<MetricCardTenProps> = (props) => {
|
|
return <CardStack {...props} />;
|
|
};
|
|
|
|
export default MetricCardTen; |