Skip to content

Commit

Permalink
removing duplicative comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mhewson committed Nov 25, 2024
1 parent 7a35b8c commit 194805d
Showing 1 changed file with 0 additions and 38 deletions.
38 changes: 0 additions & 38 deletions src/components/surface/CdrSurface.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,53 +9,15 @@ import { getSurfaceProps } from '../../utils/surface';
defineOptions({ name: 'CdrSurface' });
const props = withDefaults(defineProps<surface>(), {
/**
* sets the background color
* @values primary, secondary, brand-spruce, sale,
*/
background: 'primary',
/**
* If the withBorder prop is true this prop specifies a border color based on the token options within Cedar.
* @values primary, secondary, success, warning, error, info
*/
borderColor: 'primary',
/**
* If the withBorder prop is true this prop will set the surface borders style
* @values zero, sixteenth-x, eighth-x, three-sixteenth-x, quarter-x'
*/
borderStyle: 'solid',
/**
* If the withBorder prop is true this prop will set the surface borders width
* @values zero, sixteenth-x, eighth-x, three-sixteenth-x, quarter-x'
*/
borderWidth: 'sixteenth-x',
/**
* sets background color and border color to undefined
* @values default
*/
modifier: 'default',
/**
* Sets border radius.
* @values sharp, soft, softer, softest, round
*/
radius: 'sharp',
/**
* Sets Adds a box-shadow based on the token options within Cedar.
* @values flat, raised, elevated, floating, lifted
*/
shadow: 'flat',
/**
* Sets valid HTML element tag
*/
tag: 'div',
/**
* Surface will display with border. default color, width, and style.
*/
withBorder: false,
/**
* Alters the palette context to a new or provided palette.
* @values default, membership-subtle, membership-vibrant, sandstone
*/
palette: 'default',
});
Expand Down

0 comments on commit 194805d

Please sign in to comment.